9 lines
115 B
Plaintext
9 lines
115 B
Plaintext
|
# -*- mode: snippet -*-
|
||
|
# name: switch
|
||
|
# key: switch
|
||
|
# uuid: switch
|
||
|
# --
|
||
|
switch {
|
||
|
case ${1:cond}:
|
||
|
$0
|
||
|
}
|