9 lines
85 B
Go
9 lines
85 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
Δ := 1
|
|
Δ++
|
|
fmt.Println(Δ)
|
|
}
|