Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

50%
+0 −0
Q&A Tips in golfing using Lua

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...

posted 2y ago by General Sebast1an‭

Answer
#1: Initial revision by user avatar General Sebast1an‭ · 2021-09-08T01:44:32Z (over 2 years ago)
# 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"