Files
wren/test/io/file/exists_path_not_string.wren
Bob Nystrom 60162575ee More file system checking functions:
- Stat#isFile
- Stat#isDirectory
- Directory.exists()
- File.exists()
2016-02-21 12:23:33 -08:00

4 lines
87 B
Plaintext

import "io" for File
File.exists(123) // expect runtime error: Path must be a string.