aboutsummaryrefslogtreecommitdiff
path: root/gendoc.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-03-18 23:18:12 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-03-18 23:18:12 +0100
commitf509c70b6064c631c0de1c26ca4272d143188383 (patch)
treebac224d98f006faba5feb7149193b485fc06ea67 /gendoc.scm
parentSimplified (monad state) modify. (diff)
downloadscheme-monad-f509c70b6064c631c0de1c26ca4272d143188383.tar.gz
scheme-monad-f509c70b6064c631c0de1c26ca4272d143188383.tar.xz
Rewrote writer monad.
Diffstat (limited to 'gendoc.scm')
-rwxr-xr-xgendoc.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gendoc.scm b/gendoc.scm
index f493b42..133ccdf 100755
--- a/gendoc.scm
+++ b/gendoc.scm
@@ -22,6 +22,7 @@
((monad optional) "Optional (Maybe) type")
((monad state) "State monad")
((monad stack) "Stacks implemented on top of the state monad")
+ ((monad writer) "Your classical writer monad")
))
(define prolog
@@ -54,4 +55,4 @@
(define (main args)
(with-output-to-file infile
- (lambda () (display (stexi->texi stexi-doc-real)))))
+ (lambda () (display (stexi->texi stexi-doc)))))