KitCode 1.0.2 added while loops ex: while true do print “Hi there!” end (NOTE THIS WILL. CRASH) added elseif ex: x = 1 if x == 2 then print x elseif x == 1 then print “REAL” else print “cool” end added enter (essentially python’s input() function) ex: x = enter “Pecan pie?” print x
example syntax of KitCode: x = 1 if x == 1 then print x end (this would output “1” to the console) you can also use + and - x = 5 y = 5 + 1 print y print y + 5