Machica38

Turtle

Feb 25th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. print("Combien de blocs fera votre pont ?")
  2. blocs = read()
  3. blocs = tonumber(blocs)
  4. print("Le pont va commencer !")
  5.  
  6. repeat
  7. turtle.forward()
  8. turtle.placeDown()
  9. blocs = blocs - 1
  10. until blocs == 0
Advertisement
Add Comment
Please, Sign In to add comment