From d464b5b0a21aa4335d03fdae766c65d45ddda581 Mon Sep 17 00:00:00 2001 From: Alexandre Girard <41766777+skillinquire@users.noreply.github.com> Date: Sat, 27 Oct 2018 18:07:41 -0400 Subject: [PATCH] Create hello_world.hs --- HelloWorld/hello_world.hs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 HelloWorld/hello_world.hs diff --git a/HelloWorld/hello_world.hs b/HelloWorld/hello_world.hs new file mode 100644 index 00000000..c5bca2c3 --- /dev/null +++ b/HelloWorld/hello_world.hs @@ -0,0 +1,6 @@ +# By skillinquire - https://github.com/skillinquire + +module Main where + +main :: IO () +main = putStrLn "Hello, World!"