tusbasaのブログ

業務や勉強中に調べたことを自分用にメモするブログ

ハッシュの追加

hash = {}

#ハッシュ名[key] = value
hash[:hoge] = 1

hash
# {:hoge=>1}