| 1 |
/** |
|---|
| 2 |
* Authors: Melvin D. Nerd, melvin@mailinator.com |
|---|
| 3 |
*/ |
|---|
| 4 |
|
|---|
| 5 |
/** |
|---|
| 6 |
* Bugs: Doesn't work for negative values. |
|---|
| 7 |
*/ |
|---|
| 8 |
|
|---|
| 9 |
/** |
|---|
| 10 |
* Date: March 14, 2003 |
|---|
| 11 |
*/ |
|---|
| 12 |
|
|---|
| 13 |
/** |
|---|
| 14 |
* Examples: |
|---|
| 15 |
* -------------------- |
|---|
| 16 |
* writefln("3"); // writes '3' to stdout |
|---|
| 17 |
* -------------------- |
|---|
| 18 |
*/ |
|---|
| 19 |
|
|---|
| 20 |
/** |
|---|
| 21 |
* License: Public Domain |
|---|
| 22 |
*/ |
|---|
| 23 |
|
|---|
| 24 |
/** |
|---|
| 25 |
* See_Also: |
|---|
| 26 |
* foo, bar, http://www.digitalmars.com/d/phobos/index.html |
|---|
| 27 |
*/ |
|---|
| 28 |
|
|---|
| 29 |
module foo; |
|---|
| 30 |
|
|---|
| 31 |
/* |
|---|
| 32 |
|
|---|
| 33 |
Digital Mars D Compiler v0.135 |
|---|
| 34 |
Copyright (c) 1999-2005 by Digital Mars written by Walter Bright |
|---|
| 35 |
Documentation: www.digitalmars.com/d/index.html |
|---|
| 36 |
Usage: |
|---|
| 37 |
dmd files.d ... { -switch } |
|---|
| 38 |
|
|---|
| 39 |
files.d D source files |
|---|
| 40 |
-c do not link |
|---|
| 41 |
-D generate documentation |
|---|
| 42 |
-Dddocdir write documentation file to docdir directory |
|---|
| 43 |
-Dffilename write documentation file to filename |
|---|
| 44 |
-d allow deprecated features |
|---|
| 45 |
-debug compile in debug code |
|---|
| 46 |
-debug=level compile in debug code <= level |
|---|
| 47 |
-debug=ident compile in debug code identified by ident |
|---|
| 48 |
-g add symbolic debug info |
|---|
| 49 |
-Ipath where to look for imports |
|---|
| 50 |
-inline do function inlining |
|---|
| 51 |
-Llinkerflag pass linkerflag to link |
|---|
| 52 |
-O optimize |
|---|
| 53 |
-o- do not write object file |
|---|
| 54 |
-odobjdir write object files to directory objdir |
|---|
| 55 |
-offilename name output file to filename |
|---|
| 56 |
-op do not strip paths from source file |
|---|
| 57 |
-profile profile runtime performance of generated code |
|---|
| 58 |
-quiet suppress unnecessary messages |
|---|
| 59 |
-release compile release version |
|---|
| 60 |
-unittest compile in unit tests |
|---|
| 61 |
-v verbose |
|---|
| 62 |
-version=level compile in version code >= level |
|---|
| 63 |
-version=ident compile in version code identified by ident |
|---|
| 64 |
-w enable warnings |
|---|
| 65 |
|
|---|
| 66 |
*/ |
|---|