a racket lang-extension for rackjure-like anonymous function literals
Go to file
2014-08-25 11:21:41 -04:00
afl delete tests for afl at-exp racket and afl scribble 2014-08-25 11:16:37 -04:00
.gitignore Use arg-str instead of arg-char and update docs 2014-07-16 16:49:13 -04:00
.travis.yml Update .travis.yml 2014-08-25 11:21:41 -04:00
info.rkt Update deps 2014-07-22 10:44:51 -04:00
README.md add links to source code and docs 2014-08-24 16:32:47 -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@afl/index.html

Build Status

Example:

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