aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/anonymous_functions/anonymous_functions1/main.go
blob: 20a90cfc53c84a56230f68905c7abe516a16b423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// anonymous functions1
// Make me compile!

// I AM NOT DONE
package main

import "fmt"

func main() {

	func(name string) {
		fmt.Printf("Hello %s", name)
	}()

}