forked from purescript/purescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCore.hs
More file actions
22 lines (20 loc) · 751 Bytes
/
Core.hs
File metadata and controls
22 lines (20 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-----------------------------------------------------------------------------
--
-- Module : Language.PureScript.Core
-- Copyright : (c) 2013-14 Phil Freeman, (c) 2014 Gary Burgess, and other contributors
-- License : MIT
--
-- Maintainer : Phil Freeman <paf31@cantab.net>, Gary Burgess <gary.burgess@gmail.com>
-- Stability : experimental
-- Portability :
--
-- | Types and values used throughout the core representations
--
-----------------------------------------------------------------------------
module Language.PureScript.Core (
module C
) where
import Language.PureScript.Core.Ann as C
import Language.PureScript.Core.Literals as C
import Language.PureScript.Core.Meta as C
import Language.PureScript.Core.Module as C