a racket lang-extension for rackjure-like anonymous function literals
Go to file
2014-07-16 17:01:57 -04:00
afl tweak docs 2014-07-16 17:01:57 -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-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)