mirror of
https://github.com/github/semantic.git
synced 2024-11-28 10:15:55 +03:00
10 lines
65 B
Go
10 lines
65 B
Go
package main
|
|
|
|
func main() {
|
|
a[1:]
|
|
b[:2]
|
|
c[1:2]
|
|
d[2:1:4]
|
|
f[1:2]
|
|
}
|