mirror of
https://github.com/johnkerl/miller.git
synced 2026-08-01 04:01:58 +00:00
7 lines
86 B
Text
7 lines
86 B
Text
end {
|
|
x = "abcde";
|
|
print x[1];
|
|
print x[-1];
|
|
print x[1:2];
|
|
print x[-2:-1];
|
|
}
|