mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-31 19:51:33 +00:00
6 lines
87 B
Text
6 lines
87 B
Text
end {
|
|
x = [10, 20, 30, 40, 50];
|
|
print x[1];
|
|
print x[5];
|
|
print x[6]; # absent
|
|
}
|