RosettaCodeData/Task/Keyboard-input-Keypress-check/Nim/keyboard-input-keypress-check.nim
2023-07-01 13:44:08 -04:00

15 lines
255 B
Nim

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)