unix-conf/.emacs.d/elpa/yasnippet-20160131.948/snippets/haskell-mode/case

9 lines
177 B
Plaintext
Raw Normal View History

2016-02-18 13:53:30 +00:00
# -*- mode: snippet -*-
# name: case
# key: case
# expand-env: ((yas-indent-line 'fixed))
# --
case ${1:var} of
${2:cond} -> ${3:value}
$0
otherwise -> ${4:other}