mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 11:23:14 +01:00
Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
22 lines
579 B
D
22 lines
579 B
D
/******************************************************************************
|
|
|
|
Example to format a locale-based time. For a default locale of
|
|
en-gb, this examples formats in the following manner:
|
|
|
|
"Thu, 27 April 2006 18:20:47 +1"
|
|
|
|
******************************************************************************/
|
|
|
|
private import tango.io.Console;
|
|
|
|
private import tango.time.Clock;
|
|
|
|
private import tango.text.locale.Locale;
|
|
|
|
void main ()
|
|
{
|
|
auto layout = new Locale;
|
|
|
|
Cout (layout ("{:ddd, dd MMMM yyyy HH:mm:ss z}", Clock.now)).newline;
|
|
}
|