mirror of
https://github.com/ProgramSnail/rts_game_backend.git
synced 2026-01-25 12:57:08 +00:00
13 lines
No EOL
203 B
C++
Executable file
13 lines
No EOL
203 B
C++
Executable file
#include <curses.h>
|
|
#include <cstdlib>
|
|
#include <unistd.h>
|
|
|
|
int main() {
|
|
initscr();
|
|
noecho();
|
|
mvprintw(0, 0, "Hello World!");
|
|
refresh();
|
|
sleep(1);
|
|
curs_set(false);
|
|
endwin();
|
|
} |