comparison tests/conargs.ur @ 1574:644558d9c756

Extend and document 'con' syntax with arguments
author Adam Chlipala <adam@chlipala.net>
date Sat, 15 Oct 2011 10:05:13 -0400
parents
children
comparison
equal deleted inserted replaced
1573:34364e383bed 1574:644558d9c756
1 con func a b = a -> b
2
3 signature S = sig
4 con funcy a b = a -> b
5 end
6
7 structure M : S = struct
8 con funcy = func
9 end