4 lines
223 B
Text
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.")
|
|
}
|