Anaphoric macros for racket
Go to file
Georges Dupéron 1a81a6de75 Initial commit
2016-04-08 11:12:18 +02:00
scribblings Initial commit 2016-04-08 11:12:18 +02:00
.gitignore Initial commit 2016-04-08 11:12:18 +02:00
.travis.yml Initial commit 2016-04-08 11:12:18 +02:00
info.rkt Initial commit 2016-04-08 11:12:18 +02:00
LICENSE.txt Initial commit 2016-04-08 11:12:18 +02:00
main.rkt Initial commit 2016-04-08 11:12:18 +02:00
README.md Initial commit 2016-04-08 11:12:18 +02:00

anaphoric

Anaphoric conditionnal forms for racket:

(aif (member 'a lst)
  (displayln it)
  (displayln "not found"))

(awhen (member 'a lst)
  (displayln it))

(acond
  [(member 'a lst) (displayln it)]
  [(member 'b lst) (displayln it)]
  [else (displayln "not found")] ;; Can't use "it" in the else clause.