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

This document has been placed into the public domain by Kris

/******************************************************************************

        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 mango.io.Console;

private import mango.locale.Core;

void main ()
{
        Cout (DateTime.now.toString ("ddd, dd MMMM yyyy HH:mm:ss z")).newline;
}