home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / fgl / fglight / expas.arj / TEMP / 03-01.PAS < prev    next >
Pascal/Delphi Source File  |  1995-01-20  |  166b  |  12 lines

  1. program main;
  2. uses fgmain, fgbitmap, fgmisc;
  3.  
  4. begin
  5.   fg_initpm;
  6.   fg_setmode(3);
  7.   fg_cursor(0);
  8.  
  9.   fg_setcolor(15);
  10.   fg_text('Hello, world.',13);
  11. end.
  12.