> print("OK")
> print "OK"
> ("OK %d"):format(1)
I've seen some funky (ab)use of these, people using literal strings and tables and functions named class and similar to do:
> class "Something" {
> -- ...
> }
Hell, it even allows you to do this:
> somefunc "1string" "2string" "3string" > somefunc {} {} {}
> print("OK")
> print "OK"
> ("OK %d"):format(1)
I've seen some funky (ab)use of these, people using literal strings and tables and functions named class and similar to do:
> class "Something" {
> -- ...
> }