Whitespace

From Legacy Roblox Wiki
Revision as of 04:18, 16 March 2011 by >Emess (New page: Whitespace is a type of character used to make code easier to read. It is ignored (in most cases) by the Lua compiler. {{Example| Without whitespace: <pre>random_number = 153 good_food ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Whitespace is a type of character used to make code easier to read. It is ignored (in most cases) by the Lua compiler.

{{Example| Without whitespace:

random_number = 153
good_food = "tacos"

With whitespace:

number          = 476
disgusting_food = "fried chicken"

}}