You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fold min 9999 => \xs -> case xs == [] of { True -> 9999; False -> min(head(xs),fold(min,9999,tail(xs))) }
[] => []
if xs == [] ? 9999 : (λ x y -> if x <= y ? x : y) (head xs) ((λ f acc xs -> if xs == [] ? acc : f (head xs) ((λ f acc xs -> if xs == [] ? acc : f (head xs) (fold f acc (tail xs))) f acc (tail xs))) (λ x y -> if x <= y ? x : y) 9999 (tail xs)) => 9999