initial release
[wix.git] / src / Main.lhs
1 \begin{code}
2 module Main
3 where
4 import Wix(main')
5 import System
6
7 main = do x <- getArgs
8           main' (head x) 0
9
10 \end{code}