RosettaCodeData/Task/Check-that-file-exists/Icon/check-that-file-exists.icon
2023-07-01 13:44:08 -04:00

4 lines
223 B
Text

every dir := !["./","/"] do {
write("file ", f := dir || "input.txt", if stat(f) then " exists." else " doesn't exist.")
write("directory ", f := dir || "docs", if stat(f) then " exists." else " doesn't exist.")
}