From: Michael Orlitzky Date: Mon, 15 Oct 2012 05:15:19 +0000 (-0400) Subject: Import Aliases and TwoTuple in the .ghci file. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=numerical-analysis.git;a=commitdiff_plain;h=5b5be1dc37fee3c869f1fc4a5803a9789cfab5a2 Import Aliases and TwoTuple in the .ghci file. --- diff --git a/.ghci b/.ghci index e5788ad..82c4f29 100644 --- a/.ghci +++ b/.ghci @@ -2,10 +2,13 @@ :set -isrc -- Load everything. -:l src/Roots/Simple.hs +:l src/Roots/Simple.hs src/Aliases.hs src/TwoTuple.hs -- Just for convenience. import Data.Number.BigFloat +import Aliases +import TwoTuple + -- Use a calmer prompt. :set prompt "numerical-analysis> "