Skip to content

Instantly share code, notes, and snippets.

@mariorodriguespt
Created April 2, 2015 07:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mariorodriguespt/f1379a73f4e70b0acac4 to your computer and use it in GitHub Desktop.
Save mariorodriguespt/f1379a73f4e70b0acac4 to your computer and use it in GitHub Desktop.
var funcs : [()->Int] = []
for i in 0...3{
funcs.append({
return i
})
}
for i in 0...3{
println(funcs[i]())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment