clojure-scheme VS cloroutine

Compare clojure-scheme vs cloroutine and see what are their differences.

clojure-scheme

Clojure to Scheme to C to the bare metal. (by takeoutweight)

cloroutine

Coroutine support for clojure (by leonoel)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
clojure-scheme cloroutine
3 11
565 219
- -
0.0 0.0
over 4 years ago about 1 year ago
Clojure Clojure
- Eclipse Public License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

clojure-scheme

Posts with mentions or reviews of clojure-scheme. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-30.
  • Years in Common Lisp: 2022 in review
    1 project | news.ycombinator.com | 10 Jan 2023
    For me it's microcontrollers, however I've heard in spite of the unmaintained status, clojure-scheme[1] is very usable. It uses gambit to produce C-code you can compile anywhere.

    https://github.com/takeoutweight/clojure-scheme

  • ClojureRS – Clojure interpreter implemented in Rust
    9 projects | news.ycombinator.com | 30 Apr 2022
    > But wouldn't it make more sense to first rewrite Clojure itself in some small/minimal scheme-y subset of Clojure

    How about Scheme?: https://github.com/takeoutweight/clojure-scheme

    Note that this project is unmaintained and the last updates are ~10 years old.

  • Lokke: Clojure for Guile
    5 projects | /r/Clojure | 5 Jan 2021
    lokke seems to use Guile's tooling (compiler tower, to be specific) to compile clojure-esque code to objects understood by said Guile's tooling. This is a little different from Clojurescript's approach which use ClojureJVM to transpile to javascript. There was actually another Clojure to Scheme project that leverages Clojurescript JVM transpiler: https://github.com/takeoutweight/clojure-scheme - It targets Gambit scheme instead of Guile

cloroutine

Posts with mentions or reviews of cloroutine. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-30.
  • ClojureRS – Clojure interpreter implemented in Rust
    9 projects | news.ycombinator.com | 30 Apr 2022
    Thanks for sharing! I think these restarts could definitely be implemented as a library in Clojure with the help of a coroutine library like https://github.com/leonoel/cloroutine#guides
  • GitHub - leonoel/cloroutine: Coroutine support for clojure
    2 projects | /r/Clojure | 15 Apr 2022
    Do you mean the example here https://github.com/leonoel/cloroutine/blob/master/doc/01-generators.md , with the `*tail* binding? It took me a long time looking at it to finally grok it, and it's really hard to explain in English but basically when the coroutine comes across one of these symbols that are "breaks" (in our case, "yield" is such a breaking symbol), then it will pause the coroutine, and actually call what the symbol points to (the implementation of "yield"), which returns (cons x *tail*), and keep in mind that it is all run within a recursive call to gen-seq where *tail* is bound to a lazy-seq of the remainder of the generator (binding [*tail* (gen-seq gen)] (gen)), it's pretty confusing but yeah just have to stare at it for a long time I think haha.
  • CLJ-2555: clojure.core/iteration · clojure/clojure@e45e478
    3 projects | /r/Clojure | 14 Jan 2022
    I think Clojure is really missing python/js-style generators, like what is implemented in https://github.com/leonoel/cloroutine/blob/master/doc/01-generators.md
  • Real-life use cases for CLJS macros
    1 project | /r/Clojure | 14 Oct 2021
    The next level up is core.async go blocks which compile your AST to a state machine. Also see cloroutine which also compiles the AST to a state machine or something, one of the tutorials uses cloroutine to add async/await to Clojure.
  • Continuations in Clojure
    4 projects | /r/Clojure | 8 Aug 2021
  • 6 Years of Professional Clojure
    6 projects | news.ycombinator.com | 2 Aug 2021
  • Common Lisp Style Conditions+Restarts in Clojure
    5 projects | /r/Clojure | 10 Apr 2021
    Coroutines are a more general concept, and can be used to implement conditions/delimited continuations. There’s an example in their docs.

What are some alternatives?

When comparing clojure-scheme and cloroutine you can also consider the following projects:

ClojureRS - Clojure, implemented atop Rust (unofficial)

zio-schema - Compositional, type-safe schema definitions, which enable auto-derivation of codecs and migrations.

farolero - Thread-safe Common Lisp style conditions and restarts for Clojure(Script) and Babashka.

lokke - Lokke: Clojure for Guile

core.async - Facilities for async programming and communication in Clojure

cloture - Clojure in Common Lisp

pod-registry - Pod manifests describe where pods can be downloaded, etc.

await-cps - async/await for continuation-passing style functions

process - Clojure library for shelling out / spawning sub-processes

pure-conditioning - A simple, fast, purely functional condition / restart system for Clojure.