Files
wren/test/io/stdin/read_line.wren
T
underscorediscovery 626a86fd6f chore: skip three io stdin tests on windows and mac to unblock 0.3.0 release
Add `// skip:` annotation to read_byte_eof.wren, read_line.wren, and read_line_eof.wren
to prevent test failures on non-linux platforms until the underlying issue is fixed.
2020-05-28 20:12:08 +00:00

13 lines
224 B
Plaintext

// skip:
import "io" for Stdin
System.write("> ")
System.print("1 %(Stdin.readLine())")
System.write("> ")
System.print("2 %(Stdin.readLine())")
// stdin: first
// stdin: second
// expect: > 1 first
// expect: > 2 second