MUD.hs/test/Main.hs
Michael Pilosov 32cdc46325 working code
2024-05-18 01:52:08 +00:00

13 lines
191 B
Haskell

module Main (main) where
import TestKDE (tests)
import TestMUD (tests)
import TestRandomUtils (tests)
main :: IO ()
main = do
TestKDE.tests
TestRandomUtils.tests
TestMUD.tests