home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Graphics / graphics-16000.iso / msdos / animutil / fastgfx / fg110c / 03-02.c < prev    next >
Text File  |  1992-01-30  |  194b  |  16 lines

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