I want my code to look pretty, and at the same time I want to follow the best practice. But some things just hurt my eyes, like this:
local image = display.newImage( "myimage.png" )
The above just feels so wrong! This one looks better:
local image = display.newImage("myimage.png")
What I’m refering to is the whitespace inside the parameter. I know both are valid, and both versions are common. But which one is the better practice in Lua? [import]uid: 13180 topic_id: 8073 reply_id: 308073[/import]
