Skip to content
Snippets Groups Projects
Select Git revision
  • 5ff7e55964f9169c029ccebe8bd116a20dbb5fb6
  • noetic default
  • humble
  • melodic
4 results

README.md

Blame
  • Test.connect 342 B
    send SenderRoot.A1 ;
    send SenderRoot.A2 ;
    send SenderRoot.A3 ;
    send SenderRoot.A4 ;
    send SenderRoot.InOutput using IntToA ;
    
    receive ReceiverRoot.A ;
    receive ReceiverRoot.UsingWildcardA ;
    receive with add ReceiverRoot.WithAddA ;
    receive with add ReceiverRoot.UsingWildcardWithAddA ;
    
    IntToA maps int i to A {:
        return new A().setID(i);
    :}