From: Michael Orlitzky Date: Tue, 5 Mar 2019 01:24:30 +0000 (-0500) Subject: src/Main.hs: add an explicit export list. X-Git-Tag: 1.0.1~38 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=bbf72ed357e9ef62822f05a9c6db772a3d4682dd src/Main.hs: add an explicit export list. --- diff --git a/src/Main.hs b/src/Main.hs index 913a939..ae8c5e3 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -1,6 +1,6 @@ {-# LANGUAGE RecordWildCards, DoAndIfThenElse #-} -module Main +module Main (main) where import Control.Monad ( when )