diff options
author | Ian Lynagh <igloo@earth.li> | 2009-06-13 16:15:16 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-06-13 16:15:16 +0000 |
commit | 51c08cf9d24151e79318e0a176898230997a68e4 (patch) | |
tree | 550def56065767f5812afbf69e3addac4eefc795 /bindisttest/HelloWorld.lhs | |
parent | 0d9b5f10e97a7afe621e154979d737d91d8b7688 (diff) | |
download | haskell-51c08cf9d24151e79318e0a176898230997a68e4.tar.gz |
Improve bindist testing
We now also test runghc and unlit
Diffstat (limited to 'bindisttest/HelloWorld.lhs')
-rw-r--r-- | bindisttest/HelloWorld.lhs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bindisttest/HelloWorld.lhs b/bindisttest/HelloWorld.lhs new file mode 100644 index 0000000000..94f7defd57 --- /dev/null +++ b/bindisttest/HelloWorld.lhs @@ -0,0 +1,8 @@ + +\begin{code} +module Main (main) where + +main :: IO () +main = putStr "Hello world!" +\end{code} + |