Skip to content

Instantly share code, notes, and snippets.

@jwosty
Created August 5, 2015 21:26
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 jwosty/4d8ed7ea4f1f7745b31a to your computer and use it in GitHub Desktop.
Save jwosty/4d8ed7ea4f1f7745b31a to your computer and use it in GitHub Desktop.
// 44 bytes!
let rec s n=seq{yield!string n;yield!s(n+1)}
// Usage
s 0 |> Seq.nth 100
s 0 |> Seq.nth 10000000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment