aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/generics/generics1/main.go
blob: 009fe645139e32d13c04f43767fff9d4a19aaa5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// generics1
// Make me compile!

// I AM NOT DONE
package main

import "fmt"

func main() {
	print("Hello, World!")
	print(42)
}

func print(value) {
	fmt.Println(value)
}