System Function TS: Difference between revisions
From NARS2000
Jump to navigationJump to search
No edit summary |
(revise) |
||
Line 2: | Line 2: | ||
<apll>{quad}TS</apll> is an [[ISO 13751]] standard niladic system function which returns the current date and time in a 7-element array of year, month, day, hour, minute, second and milisecond. If the dialog below was typed into the NARS2000 session manager window on February 21, 2013 at about 10:43 pm local time, we would see something similar to the following: | <apll>{quad}TS</apll> is an [[ISO 13751]] standard niladic system function which returns the current date and time in a 7-element array of year, month, day, hour, minute, second and milisecond. If the dialog below was typed into the NARS2000 session manager window on February 21, 2013 at about 10:43 pm local time, we would see something similar to the following: | ||
< | <big><apl> month {leftarrow} 'Jan' 'Feb' 'Mar' 'Apr' 'May' 'Jun' 'Jul' 'Aug' 'Sep' 'Oct' 'Nov' 'Dec'<br/> | ||
K{leftarrow}{quad}TS<br/> | |||
{rho}K<br/> | |||
7<br/> | |||
K<br/> | |||
2013 2 21 22 43 23 724<br/> | |||
K[1]<br/> | |||
2013<br/> | |||
{quad}TS[2]<br> | |||
2<br/> | |||
K[4]':'K[5]':'K[6]' 'month[ K[2] ] K[3] ',' K[1]<br/> | |||
22 : 43 : 23 Feb 21 , 2013 | |||
</apl></big> | |||
<apll>{quad}TS</apll> is a ''niladic'' function, you cannot assign a value to it, meaning NARS2000 cannot set the current date or time through <apll>{quad}TS</apll>. If you need to set the date or time, you have to use the appropriate feature of your operating system. | <apll>{quad}TS</apll> is a ''niladic'' function, you cannot assign a value to it, meaning NARS2000 cannot set the current date or time through <apll>{quad}TS</apll>. If you need to set the date or time, you have to use the appropriate feature of your operating system. | ||
{{System Variables}} | {{System Variables}} |
Revision as of 00:12, 22 February 2013
⎕TS - Time Stamp
⎕TS is an ISO 13751 standard niladic system function which returns the current date and time in a 7-element array of year, month, day, hour, minute, second and milisecond. If the dialog below was typed into the NARS2000 session manager window on February 21, 2013 at about 10:43 pm local time, we would see something similar to the following:
month ← 'Jan' 'Feb' 'Mar' 'Apr' 'May' 'Jun' 'Jul' 'Aug' 'Sep' 'Oct' 'Nov' 'Dec'
K←⎕TS
⍴K
7
K
2013 2 21 22 43 23 724
K[1]
2013
⎕TS[2]
2
K[4]':'K[5]':'K[6]' 'month[ K[2] ] K[3] ',' K[1]
22 : 43 : 23 Feb 21 , 2013
⎕TS is a niladic function, you cannot assign a value to it, meaning NARS2000 cannot set the current date or time through ⎕TS. If you need to set the date or time, you have to use the appropriate feature of your operating system.
System Variables (A value may be assigned to these except for ⎕DM) | |||||||||
---|---|---|---|---|---|---|---|---|---|
⎕ALX | ⎕CT | ⎕DM | ⎕DT | ⎕ELX | ⎕FC | ⎕FEATURE | ⎕FPC | ⎕IC | ⎕IO |
⎕LR | ⎕LX | ⎕PP | ⎕PR | ⎕PW | ⎕RL | ⎕SA | ⎕WSID | ||
Niladic System Functions (a value cannot be assigned to these) | |||||||||
⎕A | ⎕AV | ⎕EM | ⎕ET | ⎕LC | ⎕NNAMES | ⎕NNUMS | ⎕SI | ⎕SYSID | ⎕SYSVER |
⎕T | ⎕TC | ⎕TCBEL | ⎕TCBS | ⎕TCESC | ⎕TCFF | ⎕TCHT | ⎕TCLF | ⎕TCNL | ⎕TCNUL |
⎕TS | ⎕WA | ||||||||
Monadic or dyadic system functions (a value cannot be assigned to these) | |||||||||
⎕AT | ⎕CR | ⎕DC | ⎕DFT | ⎕DL | ⎕DR | ⎕EA | ⎕EC | ⎕ERROR | ⎕ES |
⎕EX | ⎕FMT | ⎕FX | ⎕MF | ⎕NAPPEND | ⎕NC | ⎕NCREATE | ⎕NERASE | ⎕NINFO | ⎕NL |
⎕NLOCK | ⎕NREAD | ⎕NRENAME | ⎕NREPLACE | ⎕NRESIZE | ⎕NSIZE | ⎕NTIE | ⎕NUNTIE | ⎕STOP | ⎕TF |
⎕TRACE | ⎕UCS | ⎕VR | |||||||
Note that quad functions and variables (except for the ⎕A family of functions) are case insensitive |