Hi,
Creates a date based on three integers, which indicate the day, month, and year, respectively.
date mkDate(int day, int month, int year)
Example
static void mkDateExample(Args _arg)
{
date d;
;
// Returns the date 0112005.
d = mkDate(1, 1, 2005);
print d;
pause;
}