Question: Why can’t I compile a program with unused variables in Ocaml? let foo a b = a + b — Error (warning 32 [unused-value-declaration]): unused value foo. Answer: You can disable the promotion of the warning to an error ...