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

// I AM NOT DONE
package main

import "fmt"

const Pi

func main() {
	fmt.Println(Pi)
}