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

package main

func main() {
	call_me()
}

func call_me() {

}