13 lines
274 B
Plaintext
13 lines
274 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: main
|
|
# name: main module
|
|
# condition: (= (length "main") (current-column))
|
|
# expand-env: ((yas-indent-line 'fixed))
|
|
# contributor: Luke Hoersten <luke@hoersten.org>
|
|
# --
|
|
module Main where
|
|
|
|
main :: IO ()
|
|
main = do
|
|
${1:undefined}$0
|
|
return () |