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