source: sizechecking/branches/macs/Exp.hs @ 22

Last change on this file since 22 was 22, checked in by gobi, 11 years ago

Expressions

File size: 154 bytes
Line 
1module Exp where
2
3import Size
4
5class 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.