aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/variables/variables2/main.go
blob: ce61d9d1c629f638d47a255ab3ee4cfac69b4ee4 (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() {
	x = 5
	fmt.Printf("x has the value %d", x)
}