From: Michael Orlitzky Date: Fri, 12 Oct 2012 17:01:04 +0000 (-0400) Subject: Move the .ghci file to the top-level directory. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=numerical-analysis.git;a=commitdiff_plain;h=d87d75d07cc14f8107c852ac7c8b505000d3ae17 Move the .ghci file to the top-level directory. Use a simpler ghci prompt. --- diff --git a/.ghci b/.ghci new file mode 100644 index 0000000..12335d1 --- /dev/null +++ b/.ghci @@ -0,0 +1,8 @@ +-- Set the include path. +:set -isrc + +-- Load everything. +:l src/Roots/Simple.hs + +-- Use a calmer prompt. +:set prompt "numerical-analysis> " diff --git a/src/.ghci b/src/.ghci deleted file mode 100644 index dfec625..0000000 --- a/src/.ghci +++ /dev/null @@ -1,2 +0,0 @@ -:l Roots/Simple.hs --- :m +Roots.Fast