1 #include <msp/io/console.h>
2 #include <msp/io/poll.h>
3 #include <msp/io/print.h>
9 IO::cin.set_local_echo(false);
10 IO::cin.set_line_buffer(false);
13 if(IO::poll(IO::cin, IO::P_INPUT)==IO::P_INPUT)
15 char c = IO::cin.get();
16 IO::print("Got character '%c' (%02X)\n", c, c);