module TestSqrt
where

import Sqrt -- file Sqrt.hs, import all public names 

main = do
    putStrLn (show (sqrt' 16))
    putStrLn (show (sqrt' 2))


