aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsimonmar <unknown>2002-05-09 13:36:11 +0000
committersimonmar <unknown>2002-05-09 13:36:11 +0000
commitbf14ddddcdd8ae7825ac14d9e45c45805f0cd530 (patch)
tree7e0ec993d5da4d919d260de55795e8165eacf7c0
parent29b0d7d20aa1f9fe0fe39891d8a23f5baef5841f (diff)
[haddock @ 2002-05-09 13:36:11 by simonmar]
Test existential types, amongst other things
-rw-r--r--examples/Foo.hs72
1 files changed, 49 insertions, 23 deletions
diff --git a/examples/Foo.hs b/examples/Foo.hs
index 78b2e053..f385d058 100644
--- a/examples/Foo.hs
+++ b/examples/Foo.hs
@@ -43,6 +43,8 @@ module Foo (
-- $aux4
+ -- $aux5
+
-- | This is some inline documentation in the export list
--
-- > a code block using bird-tracks
@@ -54,6 +56,11 @@ module Foo (
-- * A visible module
module Visible,
+
+ {-| nested-style doc comments -}
+
+ -- * Existential / Universal types
+ Ex(..),
) where
@@ -125,26 +132,30 @@ data R =
-- ** This is a section header (level 2)
-- *** This is a section header (level 3)
--- | In a comment string we can refer to identifiers in scope with
--- single quotes like this: 'T', and we can refer to modules by
--- using double quotes: "Foo". We can add emphasis /like this/.
---
--- * This is a bulleted list
---
--- - This is the next item (different kind of bullet)
---
--- (1) This is an ordered list
---
--- 2. This is the next item (different kind of bullet)
---
--- [
--- This is a block of code, which can include other markup: 'R'
--- formatting
--- is
--- significant
--- ]
---
--- We can also include URLs in documentation: <http://www.haskell.org/>.
+{-|
+In a comment string we can refer to identifiers in scope with
+single quotes like this: 'T', and we can refer to modules by
+using double quotes: "Foo". We can add emphasis /like this/.
+
+ * This is a bulleted list
+
+ - This is the next item (different kind of bullet)
+
+ (1) This is an ordered list
+
+ 2. This is the next item (different kind of bullet)
+
+@
+ This is a block of code, which can include other markup: 'R'
+ formatting
+ is
+ significant
+@
+
+> this is another block of code
+
+We can also include URLs in documentation: <http://www.haskell.org/>.
+-}
f :: C a => Int -> Int
@@ -161,13 +172,28 @@ h = 42
-- rather than a source declaration. The documentation may be
-- referred to in the export list using its name.
--
--- [ code block in named doc ]
+-- @ code block in named doc @
-- $aux2 This is some documentation that is attached to a name ($aux2)
-- $aux3
--- [ code block on its own in named doc ]
+-- @ code block on its own in named doc @
-- $aux4
--
--- [ code block on its own in named doc (after newline) ]
+-- @ code block on its own in named doc (after newline) @
+
+{- $aux5 a nested, named doc comment
+
+ with a paragraph,
+
+ @ and a code block @
+-}
+
+-- | A data-type using existential/universal types
+data Ex a
+ = forall b . C b => Ex1 b
+ | forall b . Ex2 b
+ | C a => Ex3 b
+ | Ex4 (forall a . a -> a)
+