RosettaCodeData/Task/Keyboard-input-Keypress-check/Wee-Basic/keyboard-input-keypress-check.basic

8 lines
127 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let keycode=0
print 1 "Press any key and its key code will appear."
while keycode=0
let keycode=key()
wend
print 1 keycode
end