Files
functional-programming/lab4/app/Main.hs
2024-11-29 19:24:05 +03:00

9 lines
252 B
Haskell

module Main (main) where
import Lib
main :: IO ()
main = do
putStrLn $ "Примеры работы `isCongruent`"
putStrLn $ "isCongruent 10 12 2: " ++ show (isCongruent 10 12 2)
putStrLn $ "isCongruent 10 11 2: " ++ show (isCongruent 10 11 2)