[racket-users] R7RS

2019-05-24 Thread Neil Van Dyke
Does anyone know of a summary of R7RS-Small changes relative to R5RS (not relative to R6RS)? (I'm aware of "http://andykeep.com/SchemeWorkshop2015/papers/sfpw1-2015-clinger.pdf;, which addresses a different question.) -- You received this message because you are subscribed to the Google

Re: [racket-users] Re: Online IDE’s for Racket ?

2019-05-24 Thread Stephen Foster
I came across some old posts on compiling Racket for the web, but I was wondering if there was any recent activity on this. Has anyone ever compiled Racket (including DrRacket) for the web -- i.e. with Emscripten? (I know about things like Whalesong and RacketScript. But I don't think these

Re: [racket-users] Macro help

2019-05-24 Thread Kevin Forchione
> On May 24, 2019, at 7:35 AM, Stephen Chang wrote: > > If `define-values` is not strictly required, here's a more > syntax-case-y recursive version: > > (define-syntax (aux stx) > (syntax-case stx () >[(_) #'(begin)] >[(_ (var val) . rst) > (identifier? #'var) > #'(begin >

Re: [racket-users] Abstract run times (HTDP)

2019-05-24 Thread Sean Kemplay
Thanks Matthias, I think I have it now, much appreciated. On Friday, May 24, 2019 at 2:24:57 PM UTC+1, Matthias Felleisen wrote: > > > > > On May 24, 2019, at 6:27 AM, Sean Kemplay > wrote: > > > > Hi all, > > > > I trying to work out the ART of the sum-tree question from HTDP2e. > > > > I

Re: [racket-users] Racket Mode documentation

2019-05-24 Thread Greg Hendershott
Sorawee Porncharoenwase writes: > Hmm. I'm seeing "This site can’t be reached" (DNS_PROBE_FINISHED_NXDOMAIN). Instead please try with "www" subdomain: https://www.racket-mode.com/ Although the zone apex (racket-mode.com) was working for me, yesterday, probably I don't have it configured

Re: [racket-users] Re: Racket Mode documentation

2019-05-24 Thread Greg Hendershott
That also looks cool! Definitely a lot of overlap. Maybe some differences: - I'm documenting Emacs major modes (an "app" vs. a lib). So my doc is less concerned with example code that ought to be tested. More concerned with stuff like showing default key bindings. - I wanted the README to

Re: [racket-users] Macro help

2019-05-24 Thread Stephen Chang
If `define-values` is not strictly required, here's a more syntax-case-y recursive version: (define-syntax (aux stx) (syntax-case stx () [(_) #'(begin)] [(_ (var val) . rst) (identifier? #'var) #'(begin (define var val) (aux . rst))] [(_ var . rst)

Re: [racket-users] Macro help

2019-05-24 Thread Matthias Felleisen
Let me propose the use of syntax-parse as an alternative here. I think it clarifies the purpose of the maco. — Matthias #lang racket (require (for-syntax syntax/parse)) #; (aux a (b (* 2 pi)) c (d pi)) ;; => #; (define-values (a b c d) (values #f 6.28318530717958 #f 3.141592653589793))

Re: [racket-users] Abstract run times (HTDP)

2019-05-24 Thread Matthias Felleisen
> On May 24, 2019, at 6:27 AM, Sean Kemplay wrote: > > Hi all, > > I trying to work out the ART of the sum-tree question from HTDP2e. > > I have worked through the book before however am going through it again, this > time am doing every exercise - this is not homework! > > Here is my

Re: [racket-users] Racket Mode documentation

2019-05-24 Thread Sam Tobin-Hochstadt
It looks like www.racket-mode.com works, but without the www. it doesn't. Sam On Fri, May 24, 2019 at 4:28 AM Sorawee Porncharoenwase wrote: > > Hmm. I'm seeing "This site can’t be reached" (DNS_PROBE_FINISHED_NXDOMAIN). > > On Thu, May 23, 2019 at 8:50 PM Greg Hendershott > wrote: >> >>

[racket-users] Re: Racket Mode documentation

2019-05-24 Thread zeRusski
this is pretty cool Greg! I, too, had a brief excursion into documenting with Org. It still needs work, but here is an org-source that can be executed to generate the REAME.org

[racket-users] Re: Racket Mode documentation

2019-05-24 Thread zeRusski
this is pretty cool Greg! I, too, had a brief excursion into documenting with Org. It still needs work, but here is an org-source that can be executed to generate the REAME.org

[racket-users] Abstract run times (HTDP)

2019-05-24 Thread Sean Kemplay
Hi all, I trying to work out the ART of the sum-tree question from HTDP2e. I have worked through the book before however am going through it again, this time am doing every exercise - this is not homework! Here is my data defenitions, examples, a function ror summing up the contents and

Re: [racket-users] Racket Mode documentation

2019-05-24 Thread Sorawee Porncharoenwase
Hmm. I'm seeing "This site can’t be reached" (DNS_PROBE_FINISHED_NXDOMAIN). On Thu, May 23, 2019 at 8:50 PM Greg Hendershott wrote: > Recently I consolidated and updated Racket Mode documentation. > > It is generated in two formats: > > - Info: Installed locally. View in Emacs with `C-h i`. > >