Files
wren/test/io/file/write_bytes_not_string.wren

10 lines
181 B
Plaintext
Raw Normal View History

import "io" for File
System.print(Fiber.new {
File.create("file.temp") {|file|
file.writeBytes(123)
}
}.try()) // expect: Bytes must be a string.
File.delete("file.temp")