module Version (version, copyright, disclaimer)
where

-- version number is major.minor.patchlvl; don't change the format of the
-- `versnum' line as it is `grep'ed for by a Makefile
--
idstr :: String
idstr      = String
"$Id: Version.hs,v 1.1 2012/05/27 16:49:07 dmwit Exp $"
name :: String
name       = String
"C->Haskell Compiler"
versnum :: String
versnum    = String
"0.13.13 (gtk2hs branch)"
versnick :: String
versnick   = String
"\"Bin IO\""
date :: String
date       = String
"27 May 2012"
version :: String
version    = String
name forall a. [a] -> [a] -> [a]
++ String
", version " forall a. [a] -> [a] -> [a]
++ String
versnum forall a. [a] -> [a] -> [a]
++ String
" " forall a. [a] -> [a] -> [a]
++ String
versnick forall a. [a] -> [a] -> [a]
++ String
", " forall a. [a] -> [a] -> [a]
++ String
date
copyright :: String
copyright  = String
"Copyright (c) [1999..2004] Manuel M T Chakravarty"
disclaimer :: String
disclaimer = String
"This software is distributed under the \
             \terms of the GNU Public Licence.\n\
             \NO WARRANTY WHATSOEVER IS PROVIDED. \
             \See the details in the documentation."