# -*- mode: snippet -*-
# name: elsif
# key: ifi
# --
if ${1:condition} {
$2
} elsif ${3:condition} {
$4
} else {
$5
}