# -*- mode: snippet -*-
# name: case statement
# key: case
# --
case $1 is
when $3 => $4
when others => $2;
end case;$0