Skip to content

Instantly share code, notes, and snippets.

@def-
Created January 1, 2015 23:45
Show Gist options
  • Save def-/6b2723d799165ad0e429 to your computer and use it in GitHub Desktop.
Save def-/6b2723d799165ad0e429 to your computer and use it in GitHub Desktop.
list comprehensions with consts
let foo = (proc: seq[int] =
result = @[]
for a in 1..10:
for v in 1..10:
result.add(a+v)
)()
echo foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment