8 lines
127 B
Text
8 lines
127 B
Text
|
|
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
|