modulo 1.9.0 → 1.9.1
raw patch · 2 files changed
+6/−3 lines, 2 files
Files
- modulo.cabal +2/−2
- src/Main.hs +4/−1
modulo.cabal view
@@ -1,6 +1,6 @@ name: modulo-version: 1.9.0+version: 1.9.1 cabal-version: >= 1.6 author: Hans Hoglund maintainer: Hans Hoglund <hans@hanshoglund.se>@@ -15,7 +15,7 @@ description language. The idea is to specify functionality in the module language and implement it in any language that supports C-style calling conventions. - This package include generators for C and Common Lisp (JavaScript and Haskell on the way).+ This package include generators for C, Haskell, Common Lisp and NodeJS-style JavaScript. source-repository head type: git
src/Main.hs view
@@ -22,6 +22,9 @@ import Language.Modulo.Rename import Language.Modulo.Util +import Data.Version (showVersion)+import qualified Paths_modulo as Paths+ data ModLang = C | Lisp@@ -81,7 +84,7 @@ -- n = takeWhile (/= ',') s -- v = drop 1 $ dropWhile (/= ',') s -version = "modulo-1.9.0"+version = "modulo-" ++ showVersion Paths.version header = "Usage: modulo [options]\n" ++ "Usage: modulo [options] files...\n" ++ "\n" ++