/**
   @file      curHello.c
   @author    Mitch Richling <http://www.mitchr.me/>
   @Copyright Copyright 1999 by Mitch Richling.  All rights reserved.
   @brief     Minimal ncurses program@EOL
   @Keywords  ncurses
   @Std       C89

              This simple ncurses program is about as minimal as
              possible.
              
*/

#include <ncurses.h>            /* Popular Curses  ????  */

int main(int argc, char *argv[]);

int main(int argc, char *argv[]) {
  initscr();                /* Initialize curses (the SCReen)    */
  printw("Hello, World!");  /* Print "Hello, World!" to 'stdscr' */
  refresh();                /* Draw 'stdscr' on the real screen  */
  endwin();                 /* Shutdown curses                   */
  return 0;                 /* We are done, time to exit.        */
} /* end func main */

