cfunction
(array/push arr x)
Insert an element in the end of an array. Modifies the input array
and returns it.
(def a @[])
(array/push a 1) # => @[1]
a # => @[1]
(array/push a 2) # => @[1 2]
a # => @[1 2]