Re: [racket-users] Re: I wrote my first macro ever!

2019-04-29 Thread Jérôme Martin
Looks good to me! On Monday, April 29, 2019 at 9:06:53 PM UTC+2, wanderley...@gmail.com wrote: > [(_ name (~var e element-exp) ...) > Here you can replace the `~var` call with the more classic form `e:element-exp`. `~var` is only required when you want to pass arguments to the class (whic

Re: [racket-users] Re: RacketCon: These 8 INSANE talks about Racket will change your life! I can't believe #7! --- (ninth RacketCon) on July 13th, 2019 --- Speakers Announced!

2019-04-29 Thread Matthias Felleisen
Yes, Jay is about to send it out to people who signed up and/or asked for financial help. — Matthias > On Apr 29, 2019, at 9:30 PM, calminfe...@gmail.com wrote: > > For Racket School is there any information yet about scoring a dorm room? Or > if preferred any conference rates at any near b

[racket-users] Re: RacketCon: These 8 INSANE talks about Racket will change your life! I can't believe #7! --- (ninth RacketCon) on July 13th, 2019 --- Speakers Announced!

2019-04-29 Thread calminferno
For Racket School is there any information yet about scoring a dorm room? Or if preferred any conference rates at any near by hotels during Racket School or Racket Con? On Thursday, April 25, 2019 at 4:06:41 PM UTC-4, Jay McCarthy wrote: > > (ninth RacketCon) on July 13th, 2019 > > Speakers Ann

Re: [racket-users] Re: RacketCon: These 8 INSANE talks about Racket will change your life! I can't believe #7! --- (ninth RacketCon) on July 13th, 2019 --- Speakers Announced!

2019-04-29 Thread Jay McCarthy
You are correct that this is the Saturday schedule. I'll be announcing the Sunday schedule later, but to give you and careful readers of the mailing list a preview... we'll have a "state of the Racket" presentation from Matthew, we'll do concurrent #lang and game jams, with a little bit of a tutor

Re: [racket-users] Re: I wrote my first macro ever!

2019-04-29 Thread wanderley.guimar...@gmail.com
Hi Jérôme, `syntax-parse` was in my list to explore! Thanks for the example! I did a new version following your example (require (for-syntax racket/base racket/syntax syntax/parse)) (begin-for-syntax (define-syntax-class (element-exp) (pattern (element:id value) #:with

[racket-users] Re: RacketCon: These 8 INSANE talks about Racket will change your life! I can't believe #7! --- (ninth RacketCon) on July 13th, 2019 --- Speakers Announced!

2019-04-29 Thread joeld via Racket Users
The schedule covers one day, I assume this is the Saturday? What is the Sunday schedule? Already bought ticket, trying to assemble enough info to book flights with confidence at great low prices! On Thursday, April 25, 2019 at 3:06:41 PM UTC-5, Jay McCarthy wrote: > > (ninth RacketCon) on July

[racket-users] Re: RacketCon: These 8 INSANE talks about Racket will change your life! I can't believe #7! --- (ninth RacketCon) on July 13th, 2019 --- Speakers Announced!

2019-04-29 Thread Sanjeev Sharma
I believe "you won't believe ..." tests out better (higher click through) in scientific advertising circles than "I can't believe ..." . On Thursday, April 25, 2019 at 4:06:41 PM UTC-4, Jay McCarthy wrote: > > (ninth RacketCon) on July 13th, 2019 > > Speakers Announced! > > https://con.rack

[racket-users] Re: I wrote my first macro ever!

2019-04-29 Thread Jérôme Martin
Hello there! I'm really glad you're picking up Racket and enjoying it! I've been through the same paths and struggles before, so thank you very much for posting that piece of experience here :) For your information, here is a syntax-parse version of your macro, which I find simpler to write an