2008-09-09から1日間の記事一覧

シンボルとか

オブジェクトが同じなのね "abc" == "abc" #=> true "abc".equal?("abc") #=> false :abc == :abc #=> true :abc.equal?(:abc) #=> true おK