hsnock/Language/Nock5K.hs
Steven Dee 712ef0710f Documentation/cleanup
Apparently the export syntax actually does hide the rest of the stuff in
scope, as long as you load the module instead of directly loading the
file from GHCI.

Still trying to get hackage to notice that I want it to autogenerate
documentation. Maybe module-level comments will help.
2013-11-05 16:18:34 -05:00

17 lines
284 B
Haskell

-- | Implementation of the Nock 5K spec.
module Language.Nock5K (
-- * Structures
Noun(..),
Nock,
-- * Reduction
nock,
-- * Parser
noun,
-- * REPL
repl
) where
import Language.Nock5K.Parse
import Language.Nock5K.Repl
import Language.Nock5K.Spec