File: Batch.hs

package info (click to toggle)
haskell-clash-ghc 1.8.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,992 kB
  • sloc: haskell: 49,510; ansic: 42; makefile: 10
file content (17 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{-|
  Copyright   :  (C) 2013-2017, University of Twente
  License     :  BSD2 (see the file LICENSE)
  Maintainer  :  Christiaan Baaij <christiaan.baaij@gmail.com>

  Entry point for the @clash@ executable.
-}

module Main
  ( main -- :: IO ()
  ) where

import           System.Environment ( getArgs )
import           Clash.Main         ( defaultMain )

main :: IO ()
main = getArgs >>= defaultMain