aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorLibravatar Fabian Kirchner <kirchner@posteo.de>2023-10-02 14:41:18 +0200
committerLibravatar Fabian Kirchner <kirchner@posteo.de>2023-10-02 14:41:28 +0200
commite4a6ee2dbd9dfdd76bb77b647e13487fa2299d48 (patch)
treec5538db457cce1fe7d68ca8e472b700152917a27 /app
parent24700382f2e1f9b1dac1de3e8170294cf0c818d4 (diff)
add minimal haskell boilerplate
Diffstat (limited to 'app')
-rw-r--r--app/Main.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Main.hs b/app/Main.hs
new file mode 100644
index 0000000..65ae4a0
--- /dev/null
+++ b/app/Main.hs
@@ -0,0 +1,4 @@
+module Main where
+
+main :: IO ()
+main = putStrLn "Hello, Haskell!"