1
0
forked from GitHub/gf-core

updated synopsis with information on extra modules and gfdoc for internal abstract syntax

This commit is contained in:
aarne
2011-10-28 08:37:38 +00:00
parent 3f29e551db
commit 34c8cfaa40
27 changed files with 2112 additions and 17 deletions

26
lib/doc/gfdoc/Text.html Normal file
View File

@@ -0,0 +1,26 @@
<html>
<body>
<i> Produced by
gfdoc - a rudimentary GF document generator.
(c) Aarne Ranta (aarne@cs.chalmers.se) 2002 under GNU GPL.
</i>
<p>
<h1> Text: Texts</h1>
Texts are built from an empty text by adding <tt>Phr</tt>ases,
using as constructors the punctuation marks <i>.</i>, <i>?</i>, and <i>!</i>.
Any punctuation mark can be attached to any kind of phrase.
<pre>
abstract Text = Common ** {
fun
TEmpty : Text ; --
TFullStop : Phr -> Text -> Text ; -- John walks. ...
TQuestMark : Phr -> Text -> Text ; -- Are they here? ...
TExclMark : Phr -> Text -> Text ; -- Let's go! ...
}
</pre>
</body>
</html>