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

// I AM NOT DONE
package main

import "fmt"

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