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

14 lines
246 B
JavaScript
Raw Normal View History

// retoor <retoor@molodetz.nl>
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