2
我想打印int * int
類型的方法的結果。在OCaml中打印元組
我想是這樣的:
printf "%d %d\n" (find (99, 10));;
但是,我越來越:
Error: This expression has type int * int
but an expression was expected of type int
我看着這裏http://caml.inria.fr/pub/docs/manual-ocaml/libref/Printf.html但是沒有元組的提及。
那麼打印元組的正確方法是什麼?