#612002/3/4 1:54:07
                            
                                02_Lingo_s122.html
systemDate
语法 
the systemDate
描述 
System property; returns the current date in a standard date format and can be used in conjunction with other date operations for international and cross-platform date manipulation. 
Math operations on the date are performed in days. 
This property can be tested but not set. 
例子 
This script displays the current date being retrieved and then determines the date 90 days from the current date: 
on ShowEndOfTrialPeriodDate
    set today = the systemDate
    set trialEndDate = today + 90
    put "The trial period for this software is over on"&&trialEndDate
end
参见