ref: 8cd117e55ac16cda7d40738cbd48fc8f92066da4
dir: /libstd/slcp.myr/
use "die.use"
pkg std =
generic slcp : (a : @a[:], b : @a[:] -> void)
;;
generic slcp = {a, b
var i
assert(a.len == b.len, "arguments to slcp() must be of equal length")
for i = 0; i < a.len; i++
a[i] = b[i]
;;
}