comparison .emacs.d/haskell-mode/snippets/haskell-mode/main @ 0:2764b4f45f9f

1st commit
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Mon, 21 Apr 2014 04:30:59 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:2764b4f45f9f
1 # -*- mode: snippet -*-
2 # key: main
3 # name: main module
4 # condition: (= (length "main") (current-column))
5 # expand-env: ((yas-indent-line 'fixed))
6 # contributor: Luke Hoersten <luke@hoersten.org>
7 # --
8 module Main where
9
10 main :: IO ()
11 main = do
12 ${1:undefined}$0
13 return ()