aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/variables/variables6/main.go
blob: 428befc20d226753c1f4e229a0cd60395fa13833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// variables6
// Make me compile!

// I AM NOT DONE
package main

import "fmt"

const x = 10

func main() {
	fmt.Println(x)

	x = x + 1
	fmt.Println(x)
}