Terminal control/Restricted width positional input/No wrapping: Difference between revisions

m
Line 108:
 
=={{header|Julia}}==
Requires an ANSI compatible terminal and a system C library implementing _getch() for unbuffered keyboard input. Note the code below is identical to the code in [[/wiki/Terminal_control../Restricted_width_positional_input/With_wrapping#Julia]] but with no width argument in the input call.
<lang julia>getch() = UInt8(ccall(:_getch, Cint, ()))
cls() = print("\33[2J")
4,102

edits