Skip to content

Instantly share code, notes, and snippets.

@DrunkenAlcoholic
Created May 14, 2024 03:30
Show Gist options
  • Save DrunkenAlcoholic/f78d2b8f60aacf1db120e679dedaecb9 to your computer and use it in GitHub Desktop.
Save DrunkenAlcoholic/f78d2b8f60aacf1db120e679dedaecb9 to your computer and use it in GitHub Desktop.
Two-Fer [Ecercism - Nim]
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