Contributing to Racket languages

I don’t normally post too much here, but I thought this was worth it as this is a community forum about language engineering and I mention two community open source language projects that are built using the racket compiler and language development tools:

  • Rhombus a GP language that has modern macros for language development - but without Lots of Irritating Silly Parenthesis :rofl::sweat_smile:
  • Qi general-purpose functional DSL and an embeddable flow-oriented language.

Someone asked about contributing to Racket during the Racket Town Hall. As an open source project contributions are welcome from everyone. To learn how see Good first issues & contributing to Racket - General - Racket Discourse

Best regards,

Stephen

PS when I say Modern Macros in the Racket sense I mean it differs from other macro systems in that it lets you the programmer change the front end of the compiler from inside the program and is not like embedded DSLs in languages like Ruby. See https://youtu.be/YMUCpx6vhZM

1 Like

Thanks @gtomassetti !