8 lines
155 B
Text
8 lines
155 B
Text
-- Here
|
|
f = createFile "output.txt"
|
|
close f
|
|
makeDir (sysInfo.currentDir + "\docs")
|
|
-- System root
|
|
f = createFile "\output.txt"
|
|
close f
|
|
makeDir ("c:\docs")
|