module BaseVersion (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: BaseVersion.hs,v 1.1.1.1 2004/11/13 16:42:44 duncan_coutts Exp $"
name :: String
name       = String
"Compiler Toolkit"
versnum :: String
versnum    = String
"0.26.0"
date :: String
date       = String
"19 Oct 2003"
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
date
copyright :: String
copyright  = String
"Copyright (c) [1995..2003] 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."