Create a file: Difference between revisions

Content added Content deleted
(Added 11l)
Line 3: Line 3:
In this task, the job is to create a new empty file called "output.txt" of size 0 bytes
In this task, the job is to create a new empty file called "output.txt" of size 0 bytes
and an empty directory called "docs". This should be done twice: once "here", i.e. in the current working directory and once in the filesystem root.
and an empty directory called "docs". This should be done twice: once "here", i.e. in the current working directory and once in the filesystem root.

=={{header|11l}}==
{{trans|Python}}
<lang 11l>L(directory) [‘/’, ‘./’]
File(directory‘output.txt’, ‘w’) // create /output.txt, then ./output.txt
fs:create_directory(directory‘docs’) // create directory /docs, then ./docs</lang>


=={{header|4DOS Batch}}==
=={{header|4DOS Batch}}==