a racket lang-extension for rackjure-like anonymous function literals
Go to file
Georges Dupéron 096f87caab
Merge pull request #1 from bennn/patch-1
doc: change source code link
2018-07-25 09:44:01 +02:00
aful doc: change source code link 2018-07-24 01:11:23 -04:00
.gitignore update .gitignore 2015-03-20 22:13:41 -04:00
.travis.yml Fixed raco test command (-x -> -r) 2018-05-31 19:54:53 +02:00
info.rkt Missing dependency 2017-02-06 00:44:41 +01:00
README.md Rename afl ⇒ aful (part 2) 2016-12-20 11:57:17 +01:00

aful 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/aful/index.html

Example:

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