RosettaCodeData/Task/Keyboard-input-Keypress-check/XPL0/keyboard-input-keypress-check.xpl0

9 lines
198 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
include c:\cxpl\codes; \intrinsic 'code' declarations
int K, N;
[N:= 0;
repeat K:= KeyHit; \counts up until a key is pressed
IntOut(0, N); ChOut(0, ^ );
N:= N+1;
until K;
]