or_in or_out references added

This commit is contained in:
ProgramSnail 2023-07-29 12:19:37 +03:00
parent fc114ff959
commit 68463509d8
9 changed files with 29 additions and 12 deletions

View file

@ -214,3 +214,6 @@ parse_number : Unit! = {
number.print;
bring ();
}
: example of or_in and or_out usage for template operators
( & ) |-> 'a |-> 'b <-| 'x <-| 'y = (|-> 'a := <-| 'x) && (|-> 'b := <-| 'y);