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