aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/variables/variables2/main.go
blob: 9a4cf469abda5d507b54ea5719a094a3b2cbecb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// variables2
// Make me compile!

// I AM NOT DONE
package main

import "fmt"

func main() {
	x = 5
	fmt.Printf("x has the value %d", x)
}