I was solving problems in 4clojure and got stuck at Problem 46 or example
(= true ((__ >) 7 8))
where we need to fill in the _
Basically I need to create a function that would take in another function as an argument but don't know where to go with that. Also, the evaluation kind of confuses me, if I create an anonymous function
(fn [f] ())
which takes in the function > I don't know how to pass in the other arguments for > to operate on.
I don't want the answer, just some direction.
f, you can do(apply f args)where args is a list, or(f arg1 arg2 ...).