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 01\01\2005. d = mkDate(1, 1, 2005); print d; pause; }
No comments:
Post a Comment