Post History
Convenient whitespace removal Here are instances where you can remove whitespace: Strings If you assigned or printed a string, then the next supposed line of code can lean on the right double-qu...
Answer
#1: Initial revision
# Convenient whitespace removal Here are instances where you can remove whitespace: ## Strings If you assigned or [printed](https://codegolf.codidact.com/posts/283777/284002#answer-284002) a string, then the next supposed line of code can lean on the right double-quote: <!-- language-all: lang-lua --> --[[ name = "Mark" print(name) ]] name="Mark"print(name) [Try it online!][TIO-ktau31j0] Commented code works the same. [TIO-ktau31j0]: https://tio.run/##yylN/P9fVzc6misvMTdVwVZByTexKFuJq6AoM69EAySmyRUbC5a0hUghyfz/DwA "Lua – Try It Online" ## Functions Similar to strings, you can let the next line of code lean onto the right parentheses: <!-- language-all: lang-lua --> name="Mark" print("Hello!")print(name)print("Have fun!") [Try it online!][TIO-ktau6toy] [TIO-ktau6toy]: https://tio.run/##yylN/P8/LzE31VbJN7EoW4mroCgzr0RDySM1JydfUUkTwgUp0ITJJJalKqSV5gEl//8HAA "Lua – Try It Online"