jolt-lang/jolt

Factor out a portable Scheme layer which could target different implementations

Ouverte

#446 ouverte le 21 juil. 2026

 (0 commentaire) (0 réaction) (0 personne assignée)Janet (0 fork)github user discovery
enhancementhelp wanted

Métriques du dépôt

Stars
 (14 étoiles)
Métriques de merge PR
 (Merge moyen 1h 45m) (219 PRs mergées en 30 j)

Description

While Chez gives us a good overall target for Clojure, it makes a few architectural assumptions, like being able to write instructions to a section of memory and then execute that code, that do not hold for targets like WASM which considers such behavior a security concern. It would be useful to decouple the host layer from Chez and make it easy to port to different Scheme runtimes which would give us access to things like interactive development for WASM via Guile. Since host code is already separate from the core language implementation, there's some more refactoring that would be needed, but it wouldn't be difficult to isolate Chez specific bits, and build a general Scheme layer on top.

Guide contributeur