Erathostene sieve

This commit is contained in:
2026-01-19 15:13:33 +01:00
parent 7a12d6b21a
commit 0a112cb2fc
5 changed files with 30 additions and 1 deletions

View File

@@ -2,11 +2,13 @@ module Main (main) where
import GF2test (run)
import TonelliShanksTest (run)
import ErathosteneSieveTest (run)
main :: IO ()
main = do
putStrLn "Running all tests"
GF2test.run
TonelliShanksTest.run
ErathosteneSieveTest.run
putStrLn "All tests done."