From c7557ce654b8adfca629c8ebaf4b4758bf7cccf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dr=2E=20Gerg=C5=91=20=C3=89rdi?= Date: Thu, 13 Sep 2018 11:08:18 +0800 Subject: [PATCH] The smallest possible executable Haskell would be one that doesn't actually do anything --- haskell_term.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell_term.hs b/haskell_term.hs index 3b182fc..111f49d 100644 --- a/haskell_term.hs +++ b/haskell_term.hs @@ -1 +1 @@ -main=print 0 +main=pure ()