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.
13 lines
224 B
Plaintext
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
|