11 lines
163 B
Plaintext
11 lines
163 B
Plaintext
|
|
# -*- mode: snippet -*-
|
||
|
|
# contributor: Karthik Chikmagalur
|
||
|
|
# name: switch
|
||
|
|
# key: switch
|
||
|
|
# --
|
||
|
|
switch ${1:variable}
|
||
|
|
case ${2:value}
|
||
|
|
$3
|
||
|
|
otherwise
|
||
|
|
end
|
||
|
|
|