Re: Better? or less good?
Matthew Butterick <[email protected]>
| Newsgroups | gmane.comp.lang.racket.user,gmane.lisp.scheme.plt |
|---|---|
| Message-ID | <[email protected]> |
On Oct 21, 2016, at 7:24 AM, David Raymond Christiansen <david-DRnKfiA+q4/[email protected]> wrote: > (let ((v #t)) > (if v v fnord)) > > This is not even a program, because "fnord" has no meaning. If you don't like unbound-identifer errors, you can change `#%top`: (define-syntax-rule (#%top . x) (error 'oops)) (or #t Gor) ; #t (or #f Gor) ; error: oops -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/[email protected] For more options, visit https://groups.google.com/d/optout.