We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
A 'min' function that returns the smaller of two numbers
func min(a, b) { (a < b) ? a : b; }
asmfunc min(a,b) { getSymbol('a') getSymbol('b') lt push({ getSymbol('a') }) push({ getSymbol('b') }) ifelse }
asmfunc(a,b) { ^a ^b lt { ^a } { ^b } ifelse }
asmfunc(a,b) { if (^a ^b lt) { ^a } else { ^b } }