RosettaCodeData/Task/Collections/OCaml/collections-4.ocaml
2023-07-01 13:44:08 -04:00

2 lines
83 B
Text

# List.flatten [[1; 2]; [3; 4]; [5; 6; 7]] ;;
- : int list = [1; 2; 3; 4; 5; 6; 7]