add config datatype

This commit is contained in:
Ilya Rezvov
2018-04-28 14:24:26 -07:00
parent 388a505c8d
commit 845b57f428
+5
View File
@@ -1,5 +1,10 @@
module Main where module Main where
data WasmConfig = WasmConfig {
inputFile :: String,
outputFile :: String
} deriving (Show, Eq)
main :: IO () main :: IO ()
main = do main = do
putStrLn "There is no WASM!" putStrLn "There is no WASM!"