caseの履歴

ruby では switch の代わりにcaseってのをつかう。

case value
when "test1"
print 1
when "test2"
print 2
else
print "others"
end