Create a file: Difference between revisions

Add SmallBASIC
m (Replace deprecated function)
(Add SmallBASIC)
 
Line 581:
READY.
</pre>
 
==={{header|SmallBASIC}}===
Linux:
<syntaxhighlight lang="bbcbasic">
open "output.txt" for output as #1
close #1
open "/output.txt" for output as #1
close #1
mkdir( "docs")
mkdir( "/docs")
</syntaxhighlight>
Windows:
<syntaxhighlight lang="bbcbasic">
open "output.txt" for output as #1
close #1
open "C:\\output.txt" for output as #1
close #1
mkdir( "docs")
mkdir( "C:\\docs")
</syntaxhighlight>
 
 
=={{header|Batch File}}==
29

edits