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