From: Nobuyoshi Nakada Date: 2007-01-14T15:45:12+09:00 Subject: Re: Long quotes on multiple lines Hi, At Sun, 14 Jan 2007 14:55:31 +0900, Joel VanderWerf wrote in [ruby-talk:233904]: > > # string literal concatenation > > puts "If you need help," \ > > " please dial the operator" > > Is this deprecated and planned for removal at some point? I seem to > recall so. Maybe in the future, but it's not deprecated nor planned yet right now, although Matz has mentioned about it somewhere. And, the last one included a new line at the end. Instead, another one: # empty expression interpolation p "If you need help,#{ } please dial the operator" -- Nobu Nakada