update to sbp with regions in trees
[wix.git] / src / Main.lhs
1 \begin{code}
2 -- Copyright 2008 the Contributors, as shown in the revision logs.
3 -- Licensed under the Apache Public Source License 2.0 ("the License").
4 -- You may not use this file except in compliance with the License.
5
6 module Main
7 where
8 import Wix(main')
9 import System
10
11 main = do x <- getArgs
12           main' (head x) 0
13
14 \end{code}