ref: 0226a1a631e50ac5ad042efc85cf5d5461f5b0f8
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]
;;
}