source:
sizechecking/branches/macs/Exp.hs
@
22
Last change on this file since 22 was 22, checked in by gobi, 11 years ago | |
---|---|
File size: 154 bytes |
Line | |
---|---|
1 | module Exp where |
2 | |
3 | import Size |
4 | |
5 | class Exp l where |
6 | nil :: l [a] |
7 | cons :: l a -> l [a] -> l [a] |
8 | match :: l [a] -> l b -> l (a -> [a] -> b) -> [b] |
Note: See TracBrowser
for help on using the repository browser.