Files
wren/test/io/file/write_bytes_from_offset.wren
Bob Nystrom 8e90e3577b More file IO!
Can now create, delete, and write to files.
2016-02-20 09:23:42 -08:00

12 lines
254 B
Plaintext

import "io" for File
File.create("file.temp") {|file|
file.writeBytes("prettyshort", 0)
file.writeBytes("agoodbitlonger", 2)
file.writeBytes("short", 3)
}
System.print(File.read("file.temp")) // expect: prashortitlonger
File.delete("file.temp")