// 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) }