home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / fgl / fglight / exbas.arj / TEMP / 05-15.BAS < prev    next >
BASIC Source File  |  1995-01-20  |  255b  |  23 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. Mode = FGgetmode
  6. FGsetmode 4
  7.  
  8. FGdefcolor 0, 1
  9. FGdefcolor 255, 1
  10.  
  11. FGsetcolor 0
  12. FGtext "0", 1
  13. FGsetcolor 1
  14. FGtext " 1", 2
  15. FGsetcolor 255
  16. FGtext " 255", 4
  17. FGwaitkey
  18.  
  19. FGsetmode Mode
  20. FGreset
  21.  
  22. END
  23.