ref: 0614f810f7ccf086c7ba86db9d9198b5fb240643
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
}