9 lines
119 B
Plaintext
9 lines
119 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: ifelif
|
|
# key: ifelif
|
|
# --
|
|
if ${1:cond1} then
|
|
$0
|
|
elsif ${2:cond2} then
|
|
|
|
end if; |