lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Nick Gammon wrote:
> I was recently thrown by a complaint from a user that
> my examples on my web site are "wrong" because
> I gave examples like:
>
> print ("Hello World")
>
> instead of:
>
> print("Hello World"")

Then he'd probably lose his mind over stuff like:

(
   print
      )
      "Hello World"

print      [[
Hello World]]

*lol*

In any case, given that whitespace is not significant in most
programming languages, and that your examples clearly work, I'd say
the burden is on him to show where in the manual it says superfluous
whitespace is verboten.