home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 April / CHIP4_98.ISO / software / ccconrad / basic.exe / CHIP / Programme.Bas / Beispiele_3 / BSP26.BAS < prev    next >
Encoding:
BASIC Source File  |  1997-08-29  |  124 b   |  18 lines

  1. DEFINE a  BYTE
  2.  
  3. PRINT "Beispiel 26"
  4.  
  5. a = &H31
  6.  
  7. PRINT 1
  8. PUT a
  9.  
  10. PRINT
  11. PRINT
  12.  
  13. PRINT "a = ";a
  14. PRINT 1, 2
  15.  
  16.  
  17. END
  18.