📅  最后修改于: 2022-03-11 14:49:53.683000             🧑  作者: Mango
case a_variable # a_variable is the variable we want to compare
when 1 #compare to 1
puts "it was 1"
when 2 #compare to 2
puts "it was 2"
else
puts "it was something else"
end