1 {-
    2  -  Fulsom (The Solid Modeller, written in Haskell)
    3  -
    4  -  Copyright 1990,1991,1992,1993 Duncan Sinclair
    5  -
    6  - Permissiom to use, copy, modify, and distribute this software for any 
    7  - purpose and without fee is hereby granted, provided that the above
    8  - copyright notice and this permission notice appear in all copies, and
    9  - that my name not be used in advertising or publicity pertaining to this
   10  - software without specific, written prior permission.  I makes no
   11  - representations about the suitability of this software for any purpose.
   12  - It is provided ``as is'' without express or implied warranty.
   13  - 
   14  - Duncan Sinclair 1993.
   15  - 
   16  - Version information.
   17  -
   18  -}
   19 
   20 module Patchlevel(version,major,minor,patch) where
   21 
   22 version = "Fulsom version 3.4"
   23 
   24 -- hbc requires that I type these, else I get: "Bad overloading in exports"
   25 
   26 major = 3 :: Int
   27 
   28 minor = 4 :: Int
   29 
   30 patch = 0 :: Int