local x x = 5 print(x+1) print(x) x = x+7 print(x) local boolsample = true print (not boolsample) --False local h = "hello" local w = "world" print(h," ",w) local info term.write("enter a value ") info = read() print("you entered ",info)