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

// I AM NOT DONE
package main

import "fmt"

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