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 :: [Char]
idstr      = [Char]
"$Id: BaseVersion.hs,v 1.1.1.1 2004/11/13 16:42:44 duncan_coutts Exp $"
name :: [Char]
name       = [Char]
"Compiler Toolkit"
versnum :: [Char]
versnum    = [Char]
"0.26.0"
date :: [Char]
date       = [Char]
"19 Oct 2003"
version :: [Char]
version    = [Char]
name [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
", version " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
versnum [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
", " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
date
copyright :: [Char]
copyright  = [Char]
"Copyright (c) [1995..2003] Manuel M T Chakravarty"
disclaimer :: [Char]
disclaimer = [Char]
"This software is distributed under the \
             \terms of the GNU Public Licence.\n\
             \NO WARRANTY WHATSOEVER IS PROVIDED. \
             \See the details in the documentation."