aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/generics/generics1/main.go
blob: 9182fc56e89075802e400e320e87471058b46af5 (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)
}