Skip to content

Instantly share code, notes, and snippets.

@tcsavage
Last active December 10, 2015 14:19
Show Gist options
  • Save tcsavage/4446945 to your computer and use it in GitHub Desktop.
Save tcsavage/4446945 to your computer and use it in GitHub Desktop.
test :: Int -> [Int]
test f
| f <= 0 = []
| otherwise = f : test (f-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment