home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / education / a / control / solutions / traffic_1 < prev   
Text File  |  1991-01-02  |  318b  |  29 lines

  1. / Traffic light solution
  2.  
  3. traffic
  4. repeat
  5.  
  6.    lighton 1
  7.    lighton 6
  8.    wait 4    
  9.    lightoff 6
  10.    lighton 2
  11.    lighton 5
  12.    wait 1
  13.    lightoff 1
  14.    lightoff 2
  15.    lightoff 5
  16.    lighton 4
  17.    lighton 3
  18.    wait 4
  19.    lighton 2
  20.    lighton 5
  21.    lightoff 3
  22.    wait 1
  23.    lightoff 2
  24.    lightoff 5
  25.    lightoff 4
  26.  
  27. until forever
  28.  
  29.