Skip to content

Instantly share code, notes, and snippets.

@cryzed

cryzed/wat.nim Secret

Created December 9, 2015 00:01
Show Gist options
  • Save cryzed/a50fe74f9cd559a07161 to your computer and use it in GitHub Desktop.
Save cryzed/a50fe74f9cd559a07161 to your computer and use it in GitHub Desktop.
proc `$`(sequence: seq[T]): string =
result = ""
for item in sequence:
result.add(($item) & "\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment