ref: 9a388068afc910ad273cb32a983f7cd4ed6c6f51
dir: /libstd/slpush.myr/
use "types.use" use "alloc.use" use "fmt.use" pkg std = generic slpush : (sl : @a[:], elt : @a -> @a[:]) ;; generic slpush = {sl, elt sl = slgrow(sl, sl.len + 1) sl[sl.len - 1] = elt -> sl }