Elo – A data expression language which compiles to JavaScript, Ruby, and SQL
(elo-lang.org)
from cm0002@suppo.fi to programming@programming.dev on 12 Jan 2026 01:14
https://suppo.fi/post/9965863
from cm0002@suppo.fi to programming@programming.dev on 12 Jan 2026 01:14
https://suppo.fi/post/9965863
#programming
threaded - newest
Every line of code by Claude Code, eh?
I won’t comment on:
but, even so,… what’s the point of this expression language?
Why would I want to “compile”
as javascript
(function (_) { return (() => { const x = 12; const y = 13; return x + y; })(); });ruby
->(_) { (x = 12; y = 13; x + y) }or sql
( SELECT ( SELECT x + y FROM ( SELECT 13 AS y ) AS _let ) FROM ( SELECT 12 AS x ) AS _let )