nim-libnx/examples/helloworld/helloworld.nim
2018-07-18 11:31:13 +09:00

17 lines
304 B
Nim

import sets
import libnx/[graphics, console, app, input]
mainFunction:
initDefault()
console.init()
printAt (17, 20), "HELLO FROM NIM"
mainLoop:
let keysDown = keysDown(Controller.P1_AUTO)
if keysDown.len() > 0:
echo keysDown
if ControllerKey.Plus in keysDown:
break