MUD.hs/test/Main.hs

13 lines
191 B
Haskell
Raw Permalink Normal View History

2024-05-18 01:47:18 +00:00
module Main (main) where
import TestKDE (tests)
import TestMUD (tests)
import TestRandomUtils (tests)
main :: IO ()
main = do
TestKDE.tests
TestRandomUtils.tests
TestMUD.tests