Files
moxa/_test/inc.go
2018-09-11 19:28:08 +02:00

12 lines
85 B
Go

package main
func main() {
i := 2
//i++
i = i + 1
println(i)
}
// Output:
// 3