This is my first Haskell program, I plan to solve more Project Euler problems using Haskell as I get better at it.

Problem 1 - Project Euler

main = print $ sum [x | x <- [1..999], x `mod` 3 == 0 || x `mod` 5 == 0]