Delete a file: Difference between revisions

Content added Content deleted
No edit summary
(Added 11l)
Line 6: Line 6:
This should be done twice: once "here", i.e. in the current working directory and once in the filesystem root.
This should be done twice: once "here", i.e. in the current working directory and once in the filesystem root.
<br><br>
<br><br>

=={{header|11l}}==
<lang 11l>fs:remove_file(‘output.txt’)
fs:remove_dir(‘docs’)
fs:remove_file(‘/output.txt’)
fs:remove_dir(‘/docs’)</lang>


=={{header|8th}}==
=={{header|8th}}==