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