Created
May 14, 2024 03:30
-
-
Save DrunkenAlcoholic/f78d2b8f60aacf1db120e679dedaecb9 to your computer and use it in GitHub Desktop.
Two-Fer [Ecercism - Nim]
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
proc twoFer*(name = ""): string = | |
if name.len > 0: return "One for " & name & ", one for me." | |
else: return "One for you, one for me." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment