1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/checker/tests/method_array_slice.vv
2021-01-19 15:55:52 +02:00

8 lines
85 B
V

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