mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
7 lines
152 B
Plaintext
7 lines
152 B
Plaintext
import "io" for File
|
|
import "scheduler" for Scheduler
|
|
|
|
var file = File.open("test/io/file/file.txt")
|
|
System.print(file.size) // expect: 19
|
|
file.close()
|