Your message board is awesome. It would be so much mmmmore awesome if the code examples were multi-line (readability) vice a single, sometimes long line. Thank you very much for your work on Solar2D!
Code blocks are can be single-line or multi-line.
Most of the older code blocks on the forums are single-line because there was some issue with migrating the forums a couple of years back that broke their formatting.
You can use markdown to format code blocks:
local msg = "hello"
local function foo( s )
print( s )
end
foo( msg )
Thanks for responding! Understood.