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!" 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!"