sci

Ludger Solbach 2026-02-18T21:44:14.429359Z

Does SCI in SCI work?

borkdude 2026-02-18T21:54:55.055479Z

It depends what you mean by this. SCI is designed to be a combination of exposed host functions + evaluation from source. You can expose SCI itself in SCI so in that sense it works (e.g. in babashka we have SCI exposed). But SCI can't evaluate itself from source currently (and I don't really have a need for it)

Ludger Solbach 2026-02-18T23:05:34.637999Z

In Overarch I have a template engine that uses SCI to evaluate comb templates. If I would make Overarch babashka compatible, the SCI based template engine would run on SCI in babashka.

borkdude 2026-02-18T23:06:19.898339Z

that's possible yes, since SCI is exposed in bb

❤️ 1
borkdude 2026-02-18T23:06:34.276589Z

bb -e '(sci.core/eval-string "(+ 1 2 3)")'