Re: Constant strings
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Constant strings
- From: Edgar Toernig <froese@...>
- Date: 2002年8月16日 16:21:23 +0200
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.