mirror of
https://github.com/github/semantic.git
synced 2024-11-28 18:23:44 +03:00
17 lines
150 B
Go
17 lines
150 B
Go
package main
|
|
|
|
func main() {
|
|
a = 1
|
|
b, c += 2, 3
|
|
d *= 3
|
|
e += 1
|
|
f <<= 1
|
|
g >>= 2
|
|
h /= 2
|
|
i ^= 2
|
|
j %= 2
|
|
k &^= 2
|
|
|
|
var pointer *Point3D = &Point3D{y: 1000}
|
|
}
|