Answers for "print list ocaml"

0

print list ocaml

let rec print_list = function 
[] -> ()
| e::l -> print_int e ; print_string " " ; print_list l
Posted by: Guest on April-03-2020

Browse Popular Code Answers by Language