Files
wren/test/io/stat/is_file.wren
T

5 lines
150 B
Plaintext
Raw Normal View History

2016-02-21 12:23:33 -08:00
import "io" for Stat
System.print(Stat.path("test/io/file/file.txt").isFile) // expect: true
System.print(Stat.path("test").isFile) // expect: false