{-| Copyright : (C) 2013-2017, University of Twente License : BSD2 (see the file LICENSE) Maintainer : Christiaan Baaij 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":)