Skip to content

Instantly share code, notes, and snippets.

@mikeash
Created June 18, 2014 23:55
Show Gist options
  • Save mikeash/eaba72b0dc4912910a16 to your computer and use it in GitHub Desktop.
Save mikeash/eaba72b0dc4912910a16 to your computer and use it in GitHub Desktop.
let oddnumbers = generator {
let i = 1
body({
return i
}, {
i += 2
}
}
for x in oddnumbers() {
println(x)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment