Skip to content

Instantly share code, notes, and snippets.

@mortemeur
Created October 4, 2021 19:37
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 mortemeur/eb1888135c11a66f36ab5dca913afc36 to your computer and use it in GitHub Desktop.
Save mortemeur/eb1888135c11a66f36ab5dca913afc36 to your computer and use it in GitHub Desktop.
module Lib
( someFunc
) where
someFunc :: IO ()
someFunc = putStrLn "someFunc"
numbers1 = 1 : map (+1) numbers1
euler1 = filter (\x -> x `mod` 3 == 0 && x `mod` 5 == 0) numbers1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment