11 lines
127 B
Plaintext
11 lines
127 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: if ... ... else ... end
|
|
# key: ife
|
|
# --
|
|
if ${1:cond}
|
|
${2:stuff}
|
|
else
|
|
${3:other}
|
|
end
|
|
$0
|