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

package main

import "fmt"

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