RosettaCodeData/Task/Delete-a-file/Maxima/delete-a-file.maxima

6 lines
111 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
load("operatingsystem")$
delete_file("output.txt")$
delete_file("/output.txt")$
rmdir("docs")$
rmdir("/docs")$