8 lines
115 B
Text
8 lines
115 B
Text
-- double : _Int -> _Int ;
|
|
-- double n = n + n;
|
|
|
|
id : 'a -> 'a ;
|
|
id x = x ;
|
|
|
|
main : ('a -> 'b -> 'c) ;
|
|
main = id ;
|