Print does not seem to be working for me The problem script:
print "Test"
It is not working!
print("Hello World") -- use paranthese when using quotation marks. print'Hello World' -- single quote print[[Hello World]] -- and square brackets.
If you want to add, lets say, a Bracket/single quote/quotation marks, that is called Literaling.
print[[ Hello "world" or Hello 'world']]