Files
wren/test/io/file/open.wren
T

6 lines
154 B
Plaintext
Raw Normal View History

2015-09-30 21:13:36 -07:00
import "io" for File
var file = File.open("test/io/file/open.wren")
System.print(file is File) // expect: true
System.print(file.isOpen) // expect: true