Antheus 4 Posted June 28, 2014 Share Posted June 28, 2014 How it Works: Write some code and use a spoiler and code that [spolier][code]Insert Lua code Here[/code][/spoiler] Then, the other people have to guess the output based on the code. If the code requires vars to run, put them as a comment at the end of the code as you would run the program with it (--Vars: XXX, XXX, Cake, Pie) The responding questions shall be as shown Output: "The Cake is A Lie" for strings or Output: 1337 for numbers Quote Link to post Share on other sites
ahhhcrap 2 Posted July 19, 2014 Share Posted July 19, 2014 print("yo") Quote Link to post Share on other sites
alexbuzzbee 0 Posted July 26, 2014 Share Posted July 26, 2014 Output: "yo" Quote Link to post Share on other sites
ahhhcrap 2 Posted August 13, 2014 Share Posted August 13, 2014 status = "INACTIVE" print("this forum":.."is"..status) Quote Link to post Share on other sites
Lizzian 46 Posted August 13, 2014 Share Posted August 13, 2014 Output: "this forumisINACTIVE" Spacing matters when your concatenating strings print( not not not not not false ) Quote Link to post Share on other sites
skyem123 4 Posted August 13, 2014 Share Posted August 13, 2014 Output: true t = { "World", "Hello", "and", "Computer", "Hello"} o = "" for k,v in ipairs(t) do o = v .. " " .. o end print(o) Quote Link to post Share on other sites
ahhhcrap 2 Posted August 15, 2014 Share Posted August 15, 2014 Output: "this forumisINACTIVE" Spacing matters when your concatenating strings print( not not not not not false ) "this forum":.."is"..status This should throw an error. Quote Link to post Share on other sites
CHlM3RA 0 Posted December 1, 2014 Share Posted December 1, 2014 Output: "Hello Computer and Hello World" print(tonumber(string.sub(tostring({}), 8), 16)) Quote Link to post Share on other sites
Trebuchette 0 Posted December 9, 2014 Share Posted December 9, 2014 Output: nil (newline) 16 print(math.cos(math.pi*(math.random(225, 300)*2)) + math.sin(5*math.pi/2)) Quote Link to post Share on other sites
lucian2004 0 Posted June 27, 2015 Share Posted June 27, 2015 local component = require("compenent") local computer = require("computer") print("TheCodeIsALie") os.sleep(1) computer.beep(2000) computer.beep(1000) error("This Is a Horrible Program!") Quote Link to post Share on other sites
tim4242 1 Posted December 6, 2015 Share Posted December 6, 2015 To Trebuchette: Output: 2.0 print(tonumber("0xffffffffffffffff")) Quote Link to post Share on other sites