10 lines
96 B
Plaintext
10 lines
96 B
Plaintext
|
# -*- mode: snippet -*-
|
||
|
# name: if elseif
|
||
|
# key: eif
|
||
|
# --
|
||
|
if $1 then
|
||
|
$2
|
||
|
elseif $3 then
|
||
|
$0
|
||
|
end
|