home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l074 / 1.ddi / CARS.TRU < prev    next >
Encoding:
Text File  |  1985-01-21  |  374 b   |  14 lines

  1. ! Plot number of cars sold from 1900 to 1980.
  2. !
  3. SET WINDOW 1900, 1980, 0, 10e6
  4.  
  5. FOR year = 1900 to 1980 step 10      ! Years by decades
  6.     READ cars                        ! Read number of cars
  7.     PLOT year, cars;                 ! Plot to this point
  8. NEXT year
  9.  
  10. ! Car production data.
  11. DATA 4190, 187e3, 2.2e6, 3.3e6, 4.4e6, 8.0e6, 7.8e6
  12. DATA 8.2e6, 8.0e6
  13. END
  14.