Results 30 comments of Dyllon Gagnier

I think it would be helpful to support JSON path as well. It's an existing standard so documentation might be easier. One use case I've had in the past is...

I don't think introducing a new syntax for special symbols is actually necessary. In Racket today, you can be explicit about defining symbols/identifiers using the `|id|` syntax, why not use...

In terms of behavior with continuations, I propose that we allow them, but that exceptions should always install a continuation barrier and that the cleanup functions should be run before...

# Searchability of Constructs It is probably a good idea to have names for uncommon operators in order to improve searchability. If a beginner sees `fun flip(p -: Posn):`, they...

There should probably be both a version taking a thunk as well as a combined version. A thunk version is useful for working with functional programming utilities while the macro...

The thunk forms are useful because they will often need to be written anyway to minimize the amount of code generated, in that case I think it makes sense to...

@jeapostrophe I was pretty sure it wasn't an original idea, just wanted to make an official proposal for Rhombus. Great news that there is some precedent for this. @sorawee the...

@mflatt I'll take a look at that proposal. I was unaware that there was already a prototype for this.

One idea would be to have a (declare-unused id...) form that explicitly says these variables are supposed to be unused and fail to compile if they do get used. Unused...