# -*- mode: snippet -*-
|
|
# name: if ... ... end
|
|
# key: if
|
|
# contributor: hankail05
|
|
# --
|
|
if ${1:cond}
|
|
${2:body}
|
|
end
|
|
$0
|