1. X
  2. Racket (& Rhombus)
Log inSign up
Racket (& Rhombus)
10.2K posts
Image
user avatar
Racket (& Rhombus)
@racketlang
Racket & Rhombus programming languages. Racket - the Language-Oriented Programming Language, Rhombus - easy to use and uniquely customizable.
Boston, MA
rhombus-lang.org
Born January 28, 1995
Joined April 2010
79
Following
7,086
Followers
RepliesRepliesMediaMedia
  • Pinned
    user avatar
    Racket (& Rhombus)
    @racketlang
    Jun 10
    # RacketCon 2026: call for presentations Calling racketeers new or experienced, we want to hear from you. Are you unsure or just new to presenting? let us know - [email protected] - and we will do our best to help you.
    Image
    RacketCon 2026: call for presentations
    From racket.discourse.group
  • user avatar
    Racket (& Rhombus)
    @racketlang
    Aug 3
    Still considering presenting at RacketCon? Contact us **now** at [email protected]
  • user avatar
    Racket (& Rhombus)
    @racketlang
    Jul 18
    efficient functional data structures Rhombus Programming Language rhombus-lang.org #rhombus
    
```python
// efficient functional data structures
 
class Tree(val, children :: List.of(Tree)):
  method flatten(): // O(N log N) for N `val`s
    for fold(lst = [val]) (child in children):
      // because append with `++` is O(log N)
      lst ++ child.flatten()
 
Tree(1, [Tree(2, [Tree(4, [])]),
         Tree(3, [Tree(5, [])])])
  .flatten() // ⇒ [1, 2, 4, 3, 5]
```
(the 'python’ syntax highlighting in most markdown-like environments is sufficient for Rhombus)

Rhombus Programming Language
https://rhombus-lang.org
#rhombus
  • user avatar
    Racket (& Rhombus)
    @racketlang
    Jul 15
    pattern matching in all binding positions Rhombus Programming Language rhombus-lang.org #rhombus
    ```
// pattern matching in all binding positions
 
class Posn(x, y)
 
fun flip_all([Posn(x, y), ...]):
  [Posn(y, x), ...]
 
flip_all([Posn(1, 2), Posn(3, 4)])
// ⇒ [Posn(2, 1), Posn(4, 3)]
flip_all([Posn(5, 6)])
// ⇒ [Posn(6, 5)]
```

https://rhombus-lang.org
  • user avatar
    Racket (& Rhombus)
    @racketlang
    Jul 13
    Bay Area Racket Meetup, Saturday August 1st​ At Noisebridge, SF. Details/questions: racket.discourse.group/t/bay-area-rac… Register: luma.com/wbfxbzvx
    Image
    racket.discourse.group
    Bay Area Racket Meetup, Saturday August 1st
    ​Social event for people interested in the Racket programming language, other Lisps, functional programming, language-oriented programming and related topics. ​These will be monthly (first Saturday...

Log in or sign up for X

See what’s happening and join the conversation

Continue with phone
or
Log in with username or email
Terms·Privacy·Cookies·Accessibility·Ads Info·© 2026 X Corp.
Advertisement
Advertisement