mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-22 23:30:37 +01:00
18 lines
187 B
C++
18 lines
187 B
C++
#include <ion/console.h>
|
|
#include <stdio.h>
|
|
|
|
namespace Ion {
|
|
namespace Console {
|
|
|
|
char readChar() {
|
|
return getchar();
|
|
}
|
|
|
|
void writeChar(char c) {
|
|
putchar(c);
|
|
fflush(stdout);
|
|
}
|
|
|
|
}
|
|
}
|