From db2be7b9ac7e605bc396573ffc3eb6b0dc112a29 Mon Sep 17 00:00:00 2001 From: Hammy Date: Sun, 4 Apr 2021 17:19:57 +0100 Subject: [PATCH] Print Hello World! --- HelloWorld/hello.hs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 HelloWorld/hello.hs diff --git a/HelloWorld/hello.hs b/HelloWorld/hello.hs new file mode 100644 index 0000000..f618602 --- /dev/null +++ b/HelloWorld/hello.hs @@ -0,0 +1,4 @@ +-- My First Haskell File! + +main :: IO () +main = do print "Hello World!" \ No newline at end of file