File: Main.hs

package info (click to toggle)
agda-bin 2.3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 44 kB
  • sloc: haskell: 7; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
-- | Wrapper for "Agda.Main".
--
-- Agda is installed as a library. This module is used to build the
-- executable.

module Main (main) where

import qualified Agda.Main ( main )
import Prelude ( IO )

main :: IO ()
main = Agda.Main.main