Returns a new shallow copy of the list.
var/list/L1 = list(1, 2, 3) var/list/L2 = L1.Copy(2) world.log << json_encode(L2) // "[2,3]"