10 lines
84 B
Plaintext
10 lines
84 B
Plaintext
|
# -*- mode: snippet -*-
|
||
|
# name: if else
|
||
|
# key: ife
|
||
|
# --
|
||
|
if $1 then
|
||
|
$2
|
||
|
else
|
||
|
$0
|
||
|
end
|