Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function calibration()
  2. --längd
  3. print("enter lenght")
  4. lenght = read()
  5. print("lenght is set to ",lenght)
  6.  
  7. --brädd
  8. print("enter widht")
  9. widht = read()
  10. print("widht is set to ",widht")
  11.  
  12. --mellanrum
  13. print("enter space")
  14. space = read()
  15. print("space is set to ",space)
  16.  
  17. end
  18.  
  19. function testprint()
  20. print(lenght)
  21. print(widht)
  22. print(space)
  23. end
  24.  
  25.  
  26. calibration()
  27. testprint()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement