a racket lang-extension for rackjure-like anonymous function literals
Go to file
2016-10-18 17:59:47 +02:00
afl Disable the test test-afl-at-exp-racket.rkt, to see if it is causing a failure in test-afl-racket.rkt 2016-10-18 17:59:47 +02:00
.gitignore update .gitignore 2015-03-20 22:13:41 -04:00
.travis.yml Rename afl to adfl, to avoid conflicts 2016-10-18 17:58:24 +02:00
info.rkt use hygienic-reader-extension package for hygiene 2016-06-18 17:34:00 -04:00
README.md Rename afl to adfl, to avoid conflicts 2016-10-18 17:58:24 +02:00

afdl Build Status

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

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

Example:

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