mirror of
https://github.com/github/semantic.git
synced 2025-01-01 19:55:34 +03:00
10 lines
63 B
Go
10 lines
63 B
Go
|
package main
|
||
|
|
||
|
func main() {
|
||
|
a[2:]
|
||
|
b[:3]
|
||
|
c[:]
|
||
|
d[1:2:3]
|
||
|
e[1:2]
|
||
|
}
|