RosettaCodeData/Task/Keyboard-input-Keypress-check/Nim/keyboard-input-keypress-check.nim

16 lines
255 B
Nim
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import os, illwill
illwillInit(fullscreen=false)
while true:
var key = getKey()
case key
of Key.None:
echo "not received a key, I can do other stuff here"
of Key.Escape, Key.Q:
break
else:
echo "Key pressed: ", $key
sleep(1000)