[racket] learn racket in 10 minutes

From: Carl Eastlund (cce at ccs.neu.edu)
Date: Mon Jul 15 17:26:38 EDT 2013

An easy thing to add instead might be a while loop:

(define-syntax-rule (while condition body ...)
  (let loop ()
    (when condition
      body ...
      (loop))))

Carl Eastlund


On Mon, Jul 15, 2013 at 6:51 AM, Tobias Hammer <tobias.hammer at dlr.de> wrote:

> The unless macro seems a bit unfavorable as a macro with the same name and
> different semantics already exists in racket
>
> Tobias
>
>
>
> On Mon, 15 Jul 2013 04:55:38 +0200, Roger Rousseau <th3rac25 at gmail.com>
> wrote:
>
>  Thanks everybody for the suggestions
>>
>> I've followed most of them, except adding a section about "Units" because
>> I
>> felt there was already a lot to take in
>>
>> Amended version is here:
>> https://github.com/voila/**learnxinyminutes-docs/blob/**
>> master/racket.html.markdown<https://github.com/voila/learnxinyminutes-docs/blob/master/racket.html.markdown>
>>
>> I plan to send a pull request tonight... unless someone find some glaring
>> mistakes
>>
>> Thanks again
>>
>> R
>>
>
>
> --
> ------------------------------**---------------------------
> Tobias Hammer
> DLR / Robotics and Mechatronics Center (RMC)
> Muenchner Str. 20, D-82234 Wessling
> Tel.: 08153/28-1487
> Mail: tobias.hammer at dlr.de
>
> ____________________
>  Racket Users list:
>  http://lists.racket-lang.org/**users <http://lists.racket-lang.org/users>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.racket-lang.org/users/archive/attachments/20130715/3d7c5624/attachment.html>

Posted on the users mailing list.