clash-ghc-0.99: src-ghc/Interactive.hs
{-|
Copyright : (C) 2013-2017, University of Twente
License : BSD2 (see the file LICENSE)
Maintainer : Christiaan Baaij <christiaan.baaij@gmail.com>
Entry point for the @clashi@ executable.
-}
module Main
( main -- :: IO ()
) where
import System.Environment ( getArgs )
import Clash.Main ( defaultMain )
main :: IO ()
main = getArgs >>= defaultMain . ("--interactive":)