__Date_Iso__

FreeBASIC

__Date_Iso__
 
Intrinsic define (macro value) set by the compiler

Syntax

__DATE_ISO__

Description

Substitutes the compiler date in a literal string ("yyyy-mm-dd" format) where used. This format is in line with ISO 8601 and can be used for lexicographical date comparisons.

Example

Print "Compile Date: " & __DATE_ISO__

If __DATE_ISO__ < "2011-12-25" Then
    Print "Compiled before Christmas day 2011"
Else
    Print "Compiled after Christmas day 2011"
End If


Compile Date: 2011-09-29
Compiled before Christmas day 2011

Differences from QB

  • New to FreeBASIC

See also