greghendershott / rackjure

Provide a few Clojure-inspired ideas in Racket. Where Racket and Clojure conflict, prefer Racket.
BSD 2-Clause "Simplified" License
236 stars 17 forks source link

Handle orig-readtable better to allow composition with at-exp #40

Closed AlexKnauth closed 10 years ago

AlexKnauth commented 10 years ago

Handle orig-readtable better to allow composition with at-exp (and probably other things like it).

#lang at-exp rackjure
(#λ@+[%1 %2] 1 2) ; 3
greghendershott commented 10 years ago

Thanks!

greghendershott commented 10 years ago

p.s. For the future, it would be preferable to submit pull requests from a "topic" branch, instead of your fork's master branch. Although it didn't cause a problem in this case (just a spurious but harmless commit c6f410b in the commit history) it can get confusing when you're trying to keep your fork in sync over more time and more changes.

I wrote about this a bit here -- just substitute the rackjure project for PLT Racket.