ocaml добавить элемент в конец списка
let append_item lst a = lst @ [a] // O(n)
Gonçalo Mateus
let append_item lst a = lst @ [a] // O(n)