Skip to content

Instantly share code, notes, and snippets.

@nsonnad
Last active April 20, 2016 04:41
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 nsonnad/bfc74546b6e7afa1aa628dfef5665afb to your computer and use it in GitHub Desktop.
Save nsonnad/bfc74546b6e7afa1aa628dfef5665afb to your computer and use it in GitHub Desktop.
eftInt :: Int -> Int -> [Int]
eftInt x y
| x <= y = x : eftInt (succ x) y
| otherwise = []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment