Created
December 31, 2020 09:39
-
-
Save dharnnie/6f0b8780227503dd31d0a5efa21e1492 to your computer and use it in GitHub Desktop.
This file contains 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 main | |
import "fmt" | |
func main() { | |
card := newCard() | |
fmt.Println(card) | |
} | |
func newCard() string { | |
return "Five of Diamonds" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment