     @prefix : <#> .
    @prefix daml: <http://www.daml.org/2001/03/daml+oil#> .
    
     @forAll :p .
    
    :ancestor     <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> daml:TransitiveProperty .
    
    :granpa     :ancestor :pa .
    
    :pa     :ancestor :bill .
    {
        :p     <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> daml:TransitiveProperty .
        
        }     => { @forAll :x,
                    :y,
                    :z .
        {
            :x     :p :y .
            :y     :p :z .
            
            }     => {:x     :p :z .
            } .
        } .
    

