
Did it work?

@popa.bogdanp I tried updating to use Bogdanp/setup-racket@c5de9e1f1ca76d654b87c16d02a918dad393e687
since you haven’t cut a release yet — but zero complaints about no release yet! Instead what I wanted to point out is that when variant
isn’t specified for current
it seems to default to BC
— not to CS
like it does for stable
or versions >= 8.0? (I’m avoiding specifying variant
because I test against 6.9 and like the behavior where it defaults to BC
for that.) https://github.com/greghendershott/racket-mode/runs/3883794396?check_suite_focus=true

In other words if variant
defaults to CS
on versions of Racket >= 8.0, I’d expect it to for current
because the snapshot builds are always a fairly new version. :slightly_smiling_face:

(At least that’s what I was hoping to rely on for the YAML to be simpler, but if it’s awkward for you to change that I can try to rework it on my end.)

That sounds like a bug. I’ll try to push a fix either tonight or tomorrow morning.

That is now fixed in v1.6.1
. Thanks for reporting the problem!

A while back someone posted an example having to do with generating Scribble documentation (like defproc
forms) from function contracts. Am I misremembering?

I’m not sure but I have an example of a define/doc
macro https://github.com/greghendershott/frog/search?q=define%2Fdoc that defines a function, uses contract expressions, generates src doc, and optionally takes code snippets that are both Scribble examples and tests.

ISTR reading about someone else doing something like this, and instead of some code in private/
making it a package you could use.

I think Matthew had a talk not too long ago with a similar example, maybe at a Clojure conf?

I think define/doc was it? Thanks!

I want to sort and deduplicate a list of symbols…how do I do it :slightly_smiling_face:

The sort
function needs a comparator

oh, there is symbol<?

And there’s remove-duplicates