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

// I AM NOT DONE
package main

import "fmt"

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