there's no recursion in assembly recursion is a higher level construct
Nathan Hughes
shhhhhhhhhh
Adrian Carter
>there's no recursion in assembly what is call
Cooper Torres
function getmin(x, first=1, last=length(x)) if first>last nothing elseif first==last x[first] else min(x[first], getmin(x, first+1, last)) end end
Superior due to not copying the array so at least it's not an O(n^2) algorithm. Not superior due to not being tail call and no tail call optimization in Julia anyway.