Last active
February 18, 2017 16:57
-
-
Save mattearly/c4a88fa450e6cab74729bb924526f1a1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// be sure you have ncurses installed | |
// compile with 'g++ ncurses_hello_world.cpp.cc -lcurses' | |
#include <ncurses.h> | |
int main() | |
{ | |
initscr(); /* Start curses mode */ | |
printw("Hello World !!!"); /* Print Hello World */ | |
refresh(); /* Print it on to the real screen */ | |
getch(); /* Wait for user input */ | |
endwin(); /* End curses mode */ | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment