mirror of
https://github.com/johnkerl/miller.git
synced 2026-08-01 04:01:58 +00:00
6 lines
86 B
Text
6 lines
86 B
Text
end {
|
|
x = [10, 20, 30, 40, 50];
|
|
print x[1:2];
|
|
print x[1:6];
|
|
print x[10:20];
|
|
}
|