Files
haskell-wasm/exec/Main.hs
T
2018-04-28 14:24:26 -07:00

11 lines
180 B
Haskell

module Main where
data WasmConfig = WasmConfig {
inputFile :: String,
outputFile :: String
} deriving (Show, Eq)
main :: IO ()
main = do
putStrLn "There is no WASM!"