author | haftmann |
Fri, 26 Jan 2007 09:24:35 +0100 | |
changeset 22188 | a63889770d57 |
parent 22015 | 12b94d7f7e1f |
child 22751 | 1bfd75c1f232 |
permissions | -rw-r--r-- |
22015 | 1 |
module Codegen where { |
2 |
||
3 |
import qualified Nat; |
|
21147 | 4 |
|
22015 | 5 |
class Null a where { |
6 |
nulla :: a; |
|
7 |
}; |
|
8 |
||
9 |
heada :: (Codegen.Null a) => [a] -> a; |
|
10 |
heada (y : xs) = y; |
|
11 |
heada [] = Codegen.nulla; |
|
21147 | 12 |
|
22188
a63889770d57
adjusted manual to improved treatment of overloaded constants
haftmann
parents:
22015
diff
changeset
|
13 |
null_option :: Maybe a; |
22015 | 14 |
null_option = Nothing; |
21147 | 15 |
|
22015 | 16 |
instance Codegen.Null (Maybe b) where { |
17 |
nulla = Codegen.null_option; |
|
18 |
}; |
|
21147 | 19 |
|
22015 | 20 |
dummy :: Maybe Nat.Nat; |
21 |
dummy = Codegen.heada [Just (Nat.Suc Nat.Zero_nat), Nothing]; |
|
21147 | 22 |
|
22015 | 23 |
} |