mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
14 lines
266 B
Plaintext
14 lines
266 B
Plaintext
import "io" for File
|
|
import "scheduler" for Scheduler
|
|
|
|
System.print(File.size("test/io/file/file.txt")) // expect: 19
|
|
|
|
// Runs asynchronously.
|
|
Scheduler.add {
|
|
System.print("async")
|
|
}
|
|
|
|
System.print(File.size("test/io/file/file.txt"))
|
|
// expect: async
|
|
// expect: 19
|