-- double : _Int -> _Int ;
-- double n = n + n;

id : 'a -> 'a ;
id x = x ;

main : ('a -> 'b -> 'c) ;
main = id ;
