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

// I AM NOT DONE
package main

import "fmt"

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