view .emacs.d/haskell-mode/snippets/haskell-mode/if.block @ 1:d3ed59c42041 default tip

add zshrc
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Mon, 21 Apr 2014 04:33:08 +0900
parents 2764b4f45f9f
children
line wrap: on
line source

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