RosettaCodeData/Task/Check-that-file-exists/Icon/check-that-file-exists.icon
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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.")
}