lua-users home
lua-l archive

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


Enrico Colombini wrote:
> 
>  Show("Suppose this is a long string "
>       "broken in two lines for readability")
> 

Not exactly what you want, but I like this trick:

  function Show(x) print(x) return Show end

  Show "Suppose this is a long string"
       "broken in two lines for readability"
       "and more:" (6*7) "end"

Ciao, ET.