12 lines
193 B
Text
12 lines
193 B
Text
nomainwin
|
|
|
|
open "output.txt" for output as #f
|
|
close #f
|
|
|
|
result = mkdir( "F:\RC")
|
|
if result <>0 then notice "Directory not created!": end
|
|
|
|
open "F:\RC\output.txt" for output as #f
|
|
close #f
|
|
|
|
end
|