#! ./runhugs

> module Main(main) where
> import System(getArgs)
>
> main = do
>   args <- getArgs
>   putStrLn (unwords args)
