Subject: Re: Value isn't appended in puts statement(appears on next line)
From: Gary Wright <gwtmp01 mac.com>
Date: Fri, 18 Sep 2009 04:40:07 +0900
References: 346676346678
In-reply-to: 346678
On Sep 17, 2009, at 3:01 PM, Jesù¸ Gabriel y GaláÏ wrote:
> puts "SQL STATEMENT I MADE UP ='"+somedigit+"'"
A more idiomatic version of that would be:
puts "SQL STATEMENT I MADE UP '#{somedigit}'"
Gary Wright