Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 174 Bytes

README.md

File metadata and controls

10 lines (9 loc) · 174 Bytes

Exercise #3: find a function

Consider the following Ocaml snippet:

let rec f x y = 
  if x y = 0 then f x (y+1)
  else x y
;;

Find a g such that f g 0 = 3.