Slide 95
Slide 95 text
func IDoNothingWrong() {
}
func PrintMotherfucker(something string) {
fmt.Println(something + " motherfucker!")
}
func PrintMoreMotherfuckers(one, two string, three int) {
fmt.Printf("%s, %s, %d motherfucker!\n",
one, two, three)
}
func PrintAllTheThings(args ...string) {
fmt.Println(args...)
}
Saturday, October 20, 12