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

7 lines
85 B
Text

import Nanoquery.IO
def exists(fname)
f = new(File, fname)
return f.exists()
end