ocaml menambahkan elemen ke akhir daftar
let append_item lst a = lst @ [a] // O(n)
Gonçalo Mateus
let append_item lst a = lst @ [a] // O(n)