Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - __date__ compilation date predefined macro http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 __DATE__            Compilation date predefined macro
------------------------------------------------------------------------------
 Syntax
   __DATE__

 Arguments
   None.

 Description
   __DATE__ is a predefined global string literal constant whose
   value contains the system date when compilation of the current source
   module began. The value of __DATE__ is a 8-character string literal in
   the form "MM/DD/YY".

 Example
   #define EXAMPLE_CONSTANT
   #include example.hdr

   proc Test_DATE__
   ? "Compiled on " + __DATE__   // display date of compilation
   endproc

   proc main
   Test_DATE__()
   endproc

See Also: __TIME__

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson