mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-07 19:51:51 +09:00
11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
function hitCtrlQ(keys) {
|
|
return (keys[0] == 45 && (keys[1] == 129 || keys[1] == 130));
|
|
}
|
|
|
|
println("Hit Ctrl+Shift+T+R to exit")
|
|
|
|
while (true) {
|
|
input.withEvent(event => {
|
|
println(event)
|
|
})
|
|
} |