Keyboard input/Keypress check: Difference between revisions

m
Line 196:
=={{header|Elena}}==
{{trans|C#}}
ELENA 3.4.x :
<lang elena>import extensions.;
 
public program()
{
[
auto chr := emptyLiteral.emptyString;
if (console isKeyAvailable.KeyAvailable)
[{
chr := console .readChar()
]}
]}</lang>
 
=={{header|ERRE}}==
Anonymous user