RosettaCodeData/Task/Collections/OCaml/collections-4.ml

3 lines
83 B
OCaml
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
# List.flatten [[1; 2]; [3; 4]; [5; 6; 7]] ;;
- : int list = [1; 2; 3; 4; 5; 6; 7]