9 lines
97 B
Plaintext
9 lines
97 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: ifelse
|
|
# key: ifel
|
|
# --
|
|
if ${1:cond1} then
|
|
$0
|
|
else
|
|
|
|
end if; |