Files
wren/test/io/stdin/read_byte_eof.wren
T

10 lines
161 B
Plaintext
Raw Normal View History

import "io" for Stdin
Stdin.readLine() // stdin: one line
var error = Fiber.new {
2016-05-20 11:50:14 -07:00
Stdin.readByte()
}.try()
System.print(error) // expect: Stdin was closed.