Create HelloWorld.hs

This commit is contained in:
Dmitrii Kovanikov 2023-03-20 09:23:46 +00:00 committed by GitHub
parent 6978124e6f
commit 8d046348dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
HelloWorld.hs Normal file
View File

@ -0,0 +1,4 @@
module HelloWorld where
main :: IO ()
main = putStrLn "Hello, world!"