12 lines
203 B
Haskell
12 lines
203 B
Haskell
module Main where
|
|
|
|
import System.Environment
|
|
import Download
|
|
import ParseHtml
|
|
|
|
main :: IO ()
|
|
main = do
|
|
args <- getArgs
|
|
htmlResult <- downloadHtmlDef (head args)
|
|
printDifferentDef htmlResult
|