Advertisement
Mesaif

TURING - CH4Ex1

May 11th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. %Outputs integers starting at five and going up by 5
  2.  
  3. %VARIABLES
  4. var num : int := 5
  5.  
  6. %Main loop
  7. loop
  8. put num
  9. num += 5
  10. delay(250) %To prevent crash
  11. end loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement