Advertisement
Guest User

var

a guest
Oct 23rd, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. local x = 5
  2. local y = 10
  3. print(x)
  4. print(x-3) --=2
  5. print(x*3) --=15
  6. print(y/2) --=5
  7. print(x^3) --=125
  8.  
  9. local HW = "Hello World"
  10. print (hw)
  11. print (HW)
  12.  
  13. local boolsample = true
  14. print(not boolsample)
  15.  
  16. local h = "Hello"
  17. local w = "World"
  18. print(h.." "..w)
  19.  
  20. local info
  21. term.write("Enter a value")
  22. info = read()
  23. print ("You entered: "..info)
  24.  
  25. SWAG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement