Skip to content

Instantly share code, notes, and snippets.

@def-
Created January 30, 2015 22:00
Show Gist options
  • Select an option

  • Save def-/da16bfa4934a8639d158 to your computer and use it in GitHub Desktop.

Select an option

Save def-/da16bfa4934a8639d158 to your computer and use it in GitHub Desktop.
proc toString(s: set[char]): string =
result = ""
for c in s:
result.add c
echo toString({'a'..'c'})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment