{-#### Hellow World Program ####-} module HelloWorld where helloWorld :: IO () helloWorld = putStr "Hello Haskell World!" helloWorldString :: String helloWorldString = "Hello World! This is a string." start :: Num a => a -> a start x = x * x