Created
February 9, 2020 15:02
-
-
Save made2591/2bd964fba98cddaf5bf50bbac00f0023 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
| ... | |
| func f1(x int) (int, string) { | |
| return x + 1, fmt.Sprintf("%d+1", x) | |
| } | |
| func f2(x int) (int, string) { | |
| return x + 2, fmt.Sprintf("%d+2", x) | |
| } | |
| func f3(x int) (int, string) { | |
| return x + 3, fmt.Sprintf("%d+3", x) | |
| } | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment