v/vlib/v/checker/tests/method_array_slice.vv

8 lines
85 B
V

import os
fn main() {
a := os.args.clone()
println(a.slice(1))
println(a[1..])
}