Posted 13 February 2014 - 05:05 PM
So if I invoke the print() function at the Lua prompt, I get what I expect to be displayed, but I also get a 1 on the following line of output. Is this a return value of 'true'?
Ex: print("Hello!")
Output:
Hello!
1
Can I suppress that second line of output (the 1) from displaying on the Lua prompt?
Ex: print("Hello!")
Output:
Hello!
1
Can I suppress that second line of output (the 1) from displaying on the Lua prompt?