mirror of
https://github.com/johnkerl/miller.git
synced 2026-08-03 13:03:00 +00:00
6 lines
73 B
Text
6 lines
73 B
Text
end {
|
|
x = "abcde";
|
|
print x[1:2];
|
|
print x[1:6];
|
|
print x[10:20];
|
|
}
|