% Hello.c -- Hello, world as an ndialog program % Jessica L. Parsons % Wed Jan 16 08:56:40 PST 2008 #Hello.c This is the traditional `Hello,world' program using ndialog: /* * cc -o hello hello.c -lnd -lpanel -lncurses -lgpm */ #include main() { init_dialog(); MENU(0, -1, -1, 0, "Hello, World!", 0); end_dialog(); }