multiple parameters type
        Posted  
        
            by romerun
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by romerun
        
        
        
        Published on 2010-05-25T03:37:26Z
        Indexed on 
            2010/05/25
            4:11 UTC
        
        
        Read the original article
        Hit count: 299
        
ocaml
I'm trying to write something like this:
type 'a 'b xxx = {aaa: 'a: bbb: 'b: ccc: int};;
It does not compile. Is it just syntax error, or they don't allow multiple paramters on type ? Then why ?
© Stack Overflow or respective owner