- This wiki is out of date, use the continuation of this wiki instead
Cd
From FenixWiki
(Difference between revisions)
| Revision as of 14:59, 19 April 2007 (edit) Sandman (Talk | contribs) ← Previous diff |
Revision as of 15:19, 19 April 2007 (edit) (undo) Sandman (Talk | contribs) m Next diff → |
||
| Line 2: | Line 2: | ||
| [[Category:files]] | [[Category:files]] | ||
| - | See also [[ | + | See also [[cd1|'''VOID''' CD( <'''STRING''' folder> )]] |
| ==Definition== | ==Definition== | ||
Revision as of 15:19, 19 April 2007
See also VOID CD( <STRING folder> )
Definition
STRING CD ( )
Returns the current path of execution.
Returns
STRING : The current path of execution.
Example
Program example;
Begin
say(CD());
ChDir("..");
say(CD());
Loop
frame;
End
End
