summaryrefslogtreecommitdiff
path: root/progs/lib/cl/maybe.hs
blob: 8ce01e5641eca93dc8c5a5ec260809b51c761040 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-- maybe.hs -- "maybe" type
--
-- author :  Sandra Loosemore
-- date   :  22 June 1993
--

module Maybe where

data Maybe a = Some a | Null

{-# ImportLispType (Maybe(Some("identity", "identity", "identity"),
                          Null("not", "'#f")))  #-}