Advertisement
Guest User

var

a guest
Jan 4th, 2013
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. local x
  2. x = 5
  3. print(x+1)
  4. print(x)
  5. x = x+7
  6. print(x)
  7.  
  8. local boolsample = true
  9. print (not boolsample) --False
  10.  
  11. local h = "hello"
  12. local w = "world"
  13.  
  14. print(h," ",w)
  15.  
  16. local info
  17.  
  18. term.write("enter a value ")
  19. info = read()
  20.  
  21. print("you entered ",info)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement