From 4da005001258e169cd259f7c30e12f581f597b3d Mon Sep 17 00:00:00 2001 From: Index Int Date: Fri, 3 Jul 2015 01:16:34 +0300 Subject: [PATCH 1/2] More common Haskell style --- h/haskell.hs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/h/haskell.hs b/h/haskell.hs index dea0b27d..4d0e7643 100644 --- a/h/haskell.hs +++ b/h/haskell.hs @@ -1,4 +1,3 @@ -module Main - where +module Main where -main=putStrLn "Hello, World!" \ No newline at end of file +main = putStrLn "Hello, World!" From 77d3bb67d22cab7a237b021897aa1a4db755e544 Mon Sep 17 00:00:00 2001 From: Index Int Date: Fri, 3 Jul 2015 01:18:05 +0300 Subject: [PATCH 2/2] Add PureScript --- p/purescript.purs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 p/purescript.purs diff --git a/p/purescript.purs b/p/purescript.purs new file mode 100644 index 00000000..6db84623 --- /dev/null +++ b/p/purescript.purs @@ -0,0 +1,5 @@ +module Main where + +import Debug.Trace + +main = trace "Hello, World!"