mirror of
https://github.com/github/semantic.git
synced 2024-12-18 20:31:55 +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]
|
|
}
|