Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

root/trunk/example/text/formatspec.d

Revision 2465, 421 bytes (checked in by sean, 1 year ago)

IssueZilla? #1349 inspired me to fix up 'svn:eol-style' on our text files, since we've been a bit lax about it in the past few months. So this terrifyingly large commit sets this property and fixes newlines where appropriate. Nothing to see here. Move along.

  • Property svn:eol-style set to native
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.