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