Abgeleitet von C++: http://pfultz2.com/blog/2015/02/01/adding-in-operator/
In C++:
auto plus = infix([](int x, int y)
{
return x + y;
});
auto three = 1 <plus> 2;
Als Vereinfachung zu operator( int x, „plus“, int y ).
In Genesys bitte ohne spitze klammern:
plus is infix( int x, int y ) : x+y; tree = 1 plus 2;