packages feed

egison 0.1.2.1 → 0.1.2.2

raw patch · 2 files changed

+5/−4 lines, 2 filesdep +parsec3dep −parsec2

Dependencies added: parsec3

Dependencies removed: parsec2

Files

Egison.hs view
@@ -2,7 +2,8 @@ import System.Environment import Control.Monad.Error import Data.IORef-import Text.ParserCombinators.Parsec hiding (spaces)+import Text.Parsec hiding (spaces)+import Text.Parsec.String (Parser) import qualified Text.Parsec.Token as P import Text.Parsec.Language (haskellDef) import IO hiding (try)@@ -10,7 +11,7 @@ main :: IO () main = do args <- getArgs           case length args of-              0 -> do flushStr "Egison, version 0.1.2.1 : http://hagi.is.s.u-tokyo.ac.jp/~egi/egison/\nWelcome to Egison Interpreter!\n"+              0 -> do flushStr "Egison, version 0.1.2.2 : http://hagi.is.s.u-tokyo.ac.jp/~egi/egison/\nWelcome to Egison Interpreter!\n"                       defsRef <- newIORef []                       runRepl defsRef               _ -> putStrLn "Program takes only 0 argument!"
egison.cabal view
@@ -7,7 +7,7 @@ -- The package version. See the Haskell package versioning policy -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for -- standards guiding when and how versions should be incremented.-Version:             0.1.2.1+Version:             0.1.2.2  -- A short (one-line) description of the package. Synopsis:            An Interpreter for the Programming Language Egison@@ -60,7 +60,7 @@   Main-is:             Egison.hs      -- Packages needed in order to build this package.-  Build-depends:       base >= 4.0 && < 5, haskell98, mtl, parsec2+  Build-depends:       base >= 4.0 && < 5, haskell98, mtl, parsec3      -- Modules not exported by this package.   -- Other-modules: