I want to print the result of a method which is of type int * int.
I tried like this:
printf "%d %d\n" (find (99, 10));;
However, I'm getting:
Error: This expression has type int * int
but an expression was expected of type int
I looked here http://caml.inria.fr/pub/docs/manual-ocaml/libref/Printf.html but there is no mention of tuple.
So what's the right way to print a tuple?