a racket lang-extension for rackjure-like anonymous function literals
Go to file
2015-06-25 14:21:13 -04:00
afl docs: use scribble-code-examples 2015-05-12 17:47:47 -04:00
.gitignore update .gitignore 2015-03-20 22:13:41 -04:00
.travis.yml Update .travis.yml 2015-06-25 14:21:13 -04:00
info.rkt docs: use scribble-code-examples 2015-05-12 17:47:47 -04:00
README.md Update README.md 2014-08-25 11:24:27 -04:00

afl

a meta-language for adding rackjure-like anonymous function literals to a language, based on at-exp and rackjure

documentation: http://pkg-build.racket-lang.org/doc/afl/index.html

Build Status

Example:

#lang afl racket/base
(map (+ % 1) '(1 2 3)) ;=> '(2 3 4)