9 lines
91 B
Plaintext
9 lines
91 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: ifelse
|
|
# key: if
|
|
# --
|
|
if (${1:cond}) {
|
|
$2
|
|
} else {
|
|
$0
|
|
} |