diff options
author | Ian Lynagh <igloo@earth.li> | 2007-08-22 20:20:40 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-08-22 20:20:40 +0000 |
commit | f700c53dceab14939616be22d114f6509caa3aad (patch) | |
tree | f044e84045881d14b1546ed61900c94e83465ed2 /bindisttest/HelloWorld.hs | |
parent | a89d263cd1be9918882ebe85485fc4783fdb93f5 (diff) | |
download | haskell-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.hs | 5 |
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!" |