(asdf:load-system :project-euler) is enough to run the Common Lisp solutions.
optionally, compile the solution file with sbcl then load for faster runtimes, for example
(load "problem11.fasl")
ghc -o problem1 problem1.hs && ./problem1 should run the Haskell solutions.