From: "T. Onoma" Date: 2003-11-07T19:10:51+09:00 Subject: Re: ruby-dev summary 21637-21729 > > | 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