view tango/example/text/formatindex.d @ 358:051f5b550d9c trunk

[svn r379] Fix slice assigns of the form T[] = T when T is a typedef. Fixes run/a/array_initialization_20_B, D, F, H.
author ChristianK
date Mon, 14 Jul 2008 12:39:23 +0200
parents 1700239cab2e
children
line wrap: on
line source

/**

    Example that shows how the format specifiers can be used to index into
    the argument list.

    Put into public domain by Lars Ivar Igesund.

*/

import tango.io.Stdout;

void main(){
    Stdout.formatln("Many {1} can now be {0} around to make {2} easier,\n and {1} can also be repeated.", 
                    "switched", "arguments", "localization");
}