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

package main

import "fmt"

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