a racket lang-extension for rackjure-like anonymous function literals
Go to file
2016-06-18 17:34:00 -04:00
afl use hygienic-reader-extension package for hygiene 2016-06-18 17:34:00 -04:00
.gitignore update .gitignore 2015-03-20 22:13:41 -04:00
.travis.yml update .travis.yml to test on 6.3, 6.4, and 6.5 2016-05-04 16:56:07 -04:00
info.rkt use hygienic-reader-extension package for hygiene 2016-06-18 17:34:00 -04:00
README.md Move build status 2015-10-17 23:21:56 -04:00

afl Build Status

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

Example:

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