9 lines
91 B
Plaintext
Raw Normal View History

2018-03-26 12:29:10 -04:00
input = 0
2018-03-21 12:20:44 -04:00
while (1) {
2018-03-26 12:29:10 -04:00
while (input == 0) {
input = getkey
2018-03-21 12:20:44 -04:00
}
2018-03-26 12:29:10 -04:00
print(input)
input = 0
2018-03-21 12:20:44 -04:00
}