Tintware Documentation : Tint Programming Language : Tint Reference : Date and Time Primitives : tint.current-dateSyntax#(tint.current-date) #(tint.current-date,%seperator) #(tint.current-date,%seperator,%global) %seperator is the value to place between each field in the result. If %global is specified and not empty, the date and time returned will be global (GST) rather than local date and time. There will be six fields returned: the number of years since 1900; the number of the month starting with one for January; the number of the day; the hour, from zero to 23; the number of minutes; and the number of seconds. Example#(tint.current-date, ) 101 11 25 15 8 25 #(tint.current-date, ,y) 101 11 25 23 8 40 |