Fungi 1.0 → 1.0.1
raw patch · 4 files changed
+6/−6 lines, 4 files
Files
- Fungi.cabal +1/−1
- Instruction.hs +1/−1
- Main.hs +2/−2
- Version.hs +2/−2
Fungi.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: 1.0+Version: 1.0.1 -- A short (one-line) description of the package. Synopsis: An interpreter for Funge-98 programming languages, including Befunge.
Instruction.hs view
@@ -814,7 +814,7 @@ {- 07 -} pushInstr $ fromIntegral dim {- 06 -} pushInstr $ fromIntegral $ ord pathSeparator {- 05 -} pushInstr 1- {- 04 -} pushInstr $ read $ filter isDigit $ show version+ {- 04 -} pushInstr $ read $ filter isDigit version {- 03 -} pushInstr handprint {- 02 -} pushInstr $ maybe (-1) fromIntegral $ byteSize n {- 01 -} pushInstr $ 0x01 + 0x02 + 0x04 + 0x08 + 0x10
Main.hs view
@@ -8,6 +8,6 @@ ----------------------------------------------------------- -main :: IO ExitCode-main = Fungi.main+main :: IO ()+main = Fungi.main >>= exitWith
Version.hs view
@@ -8,6 +8,6 @@ handprint :: Num a => a handprint = 378447798 -version :: Double-version = 1.0+version :: String+version = "1.0.1"