fork download
  1. let f a b = List.map2 (+) a b in
  2. let c = f [1; 2; 3] [4; 5; 6] in
  3. print_string (String.concat " " (List.map string_of_int c))
Success #stdin #stdout 0s 15904KB
stdin
Standard input is empty
stdout
5 7 9