Skip to content

Instantly share code, notes, and snippets.

@benmos
benmos / Extras.hs
Last active December 25, 2015 06:49 — forked from anonymous/gist:6934958
module Extras(
-- * Functions
calculateEverything
)
where
calculateEverything :: () -> Int
calculateEverything _ = 42
@benmos
benmos / gist:6934979
Last active December 25, 2015 06:49 — forked from anonymous/gist:6934958
module Main where
main :: IO ()
main = do
putStrLn "My second ever gist!"
-- You could add another line here:
putStrLn "The end!"