RosettaCodeData/Task/Delete-a-file/GAP/delete-a-file.gap

6 lines
116 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
# Apparently GAP can only remove a file, not a directory
RemoveFile("input.txt");
# true
RemoveFile("docs");
# fail