home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / fgl / fglight / exc.arj / TEMP / 03-02.C < prev    next >
Text File  |  1995-01-20  |  211b  |  17 lines

  1. #include <fastgraf.h>
  2.  
  3. void main(void);
  4.  
  5. void main()
  6. {
  7.    fg_initpm();
  8.    fg_setmode(3);
  9.    fg_cursor(0);
  10.  
  11.    fg_setcolor(15);
  12.    fg_text("Hello, world.",13);
  13.    fg_waitkey();
  14.  
  15.    fg_reset();
  16. }
  17.