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

14 lines
272 B
Haskell

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