From: Sylvain Joyeux Date: 2007-05-10T03:19:40+09:00 Subject: Re: How to write ruby in multiple lines On Wednesday 09 May 2007, anakintang wrote: > All, > > How can I write "s = s1 + s2 + s3" in multiple lines like below: > > s= s1 > + s2 > + s3 > > Thanks Like that s = s1 + s2 + s3 or s = s1 \ + s2 \ + s3 AFAIK, the first form is more in use than the second. -- Sylvain Joyeux