This would allow built-in operations to become valid arguments to the various higher-order functions in `std`. Since there are so many (23), I'd put them in an `std.op` subsection.
* `std.op.add(x, y)` implements `+`
* `std.op.neg(x)` implements unary `-`
This has a side-benefit of making the core language smaller and simpler, with no need for operator precedence. (BTW I don't see how precedence enters into the formal semantics, but I've no practice reading that kind of thing. :)
Prior art in
https://docs.python.org/3/library/operator.html