Added makefile and gitignore
This commit is contained in:
parent
cd393154d9
commit
3800d3283f
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
out/**
|
11
main.c
Normal file
11
main.c
Normal file
@ -0,0 +1,11 @@
|
||||
#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;
|
||||
}
|
Reference in New Issue
Block a user