From: "François Montel" Date: 2009-03-22T22:52:10+09:00 Subject: How #{} works Can anyone explain this? >> a = ["b"] => ["b"] >> a == "b" => false >> "#{a}" == "b" => true Since a is an array, how come the last statement evaluates as true?