Files
dotfiles/.emacs.d/elpa/haskell-mode-13.12/snippets/haskell-mode/if.block
2015-05-27 18:47:14 +02:00

8 lines
172 B
Plaintext

# -*- mode: snippet -*-
# key: if
# name: block if
# contributor: Luke Hoersten <luke@hoersten.org>
# --
if ${1:condition}
then ${2:undefined}
else ${3:undefined}$0