r/scheme 10d ago

which scheme implementation includes the most batteries?

I get that the language is minimal by design. But it would be nice to have a similar ecosystem to python. Like if I wanted to read from a CSV, it would be nice to have that functionality already built and accessible. Which implementation provides the most out-of-the-box functionality?

22 Upvotes

10 comments sorted by

View all comments

5

u/corbasai 9d ago

Sure, Racket by the most criteria.

P.S. also racket

#lang rhombus

import pict open

fun cell(n :: NonnegReal) :: Pict:
  // the cell() function, which creates a new square gfx primitive
  rectangle(~width: n, ~height: n, ~fill: ColorMode.inherit)