summaryrefslogtreecommitdiff
path: root/bindisttest/HelloWorld.hs
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-08-22 20:20:40 +0000
committerIan Lynagh <igloo@earth.li>2007-08-22 20:20:40 +0000
commitf700c53dceab14939616be22d114f6509caa3aad (patch)
treef044e84045881d14b1546ed61900c94e83465ed2 /bindisttest/HelloWorld.hs
parenta89d263cd1be9918882ebe85485fc4783fdb93f5 (diff)
downloadhaskell-f700c53dceab14939616be22d114f6509caa3aad.tar.gz
Add a bindisttest directory
After make binary-dist stage=2 you can run make in bindisttest/ to test it
Diffstat (limited to 'bindisttest/HelloWorld.hs')
-rw-r--r--bindisttest/HelloWorld.hs5
1 files changed, 5 insertions, 0 deletions
diff --git a/bindisttest/HelloWorld.hs b/bindisttest/HelloWorld.hs
new file mode 100644
index 0000000000..56e1e89994
--- /dev/null
+++ b/bindisttest/HelloWorld.hs
@@ -0,0 +1,5 @@
+
+module Main (main) where
+
+main :: IO ()
+main = putStr "Hello world!"