How can I define my own infix functions?
Put them in the .q
workspace, e.g.,
q).q.f: {x + y}
q)5 f 6
11
q)
This is generally considered bad style.
Put them in the .q
workspace, e.g.,
q).q.f: {x + y}
q)5 f 6
11
q)
This is generally considered bad style.