Created
June 21, 2019 16:50
-
-
Save lamdor/14273ea8cc3e72a2fcfd38d5f4930bc1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Package twofer gives a two for one phrase back | |
package twofer | |
import "fmt" | |
// ShareWith returns the two for one statement | |
func ShareWith(name string) string { | |
if name == "" { | |
name = "you" | |
} | |
return fmt.Sprintf("One for %s, one for me.", name) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment