a racket lang-extension for rackjure-like anonymous function literals
Go to file
2014-07-16 14:35:18 -04:00
afl Move docs and tests into subdirs 2014-07-16 14:35:18 -04:00
.gitignore Tweak docs 2014-07-12 12:33:14 -04:00
.travis.yml Update .travis.yml 2014-07-16 08:57:11 -04:00
info.rkt Add docs 2014-07-10 18:27:39 -04:00
README.md Update README.md 2014-07-16 14:27:33 -04:00

afl

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

Build Status

Example:

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