root/trunk/example/text/formatspec.d
| Revision 2465, 421 bytes (checked in by sean, 1 year ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | /** |
| 2 | |
| 3 | Example showing how to use format specifier components in a format string's |
| 4 | argument. |
| 5 | |
| 6 | Put into public domain by Lars Ivar Igesund |
| 7 | |
| 8 | */ |
| 9 | |
| 10 | import tango.io.Stdout; |
| 11 | |
| 12 | void main(){ |
| 13 | double avogadros = 6.0221415e23; |
| 14 | Stdout.formatln("I have {0:C} in cash.", 100); |
| 15 | Stdout.formatln("Avogadro's number is {0:E}.", avogadros); |
| 16 | Stdout.formatln("Avogadro's number (with alignment) is {0,4:E}.", avogadros); |
| 17 | } |
Note: See TracBrowser for help on using the browser.












