[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Re: ruby-dev summary 21637-21729

T. Onoma

11/7/2003 10:11:00 AM

> > | s = "this is a string " > > | "that I have chosen to break " > > | "into multiple lines"
> >
> > How about
> >
> > s = "this is a string " +
> > "that I have chosen to break " +
> > "into multiple lines"
>
> I would prefer this:
>
> s = "this is a string "
> + "that I have chosen to break "
> + "into multiple lines"

shades of %L and kin