www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 849cb0355d07c57c278b961dd3323ba393cc5ec0
parent 5c8d48b89818dc1ed133bb57d2604309fc82e6d7
Author: AlexKnauth <alexander@knauth.org>
Date:   Sat, 12 Jul 2014 12:33:14 -0400

Tweak docs

Diffstat:
A.gitignore | 2++
Mafl/docs.scrbl | 6+++++-
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore @@ -0,0 +1,2 @@ + +*.scrbl~ diff --git a/afl/docs.scrbl b/afl/docs.scrbl @@ -7,6 +7,10 @@ @title{afl} +@;; example: @racket[(map @#,afl[(+ % 1)] '(1 2 3))] +@(define-syntax-rule @afl[form ...] + @elem{@tt{#λ}@racket[form ...]}) + @section{#lang afl} @defmodulelang[afl]{ @@ -17,7 +21,7 @@ that adds @racketmodname[rackjure]-like anonymous function literals to a languag For example, @racket[@#,hash-lang[] @#,racketmodname[afl] @#,racketmodname[racket/base]] adds anonymous function literals to @racketmodname[racket/base], so that @racketmod[afl @#,racketmodname[racket/base] -(map @#,elem{@tt{#λ}@racket[(+ % 1)]} '(1 2 3))] +(map @#,afl[(+ % 1)] '(1 2 3))] produces @racket['(2 3 4)] }