From e0438c39c3509e6285ea03bba1d11c29cabd8468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tvrtko=20Majstorovi=C4=87?= Date: Sun, 1 Oct 2017 16:43:36 +0200 Subject: [PATCH] Add haskell Hello World --- hello_world.hs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 hello_world.hs diff --git a/hello_world.hs b/hello_world.hs new file mode 100644 index 0000000..53cb2a7 --- /dev/null +++ b/hello_world.hs @@ -0,0 +1,4 @@ +-- haskell "hello world" program +-- compile with 'ghc -o hello hello_world.hs' and run with './hello + +main = putStrLn "hello world"