Hey, I've been working on this for a while now and finally feel okay sharing some code examples. Zen is a statically typed language that compiles to native binaries through LLVM. Still a work in progress but the core stuff works. One thing I'm kind of proud of is reactive variables. It's a first class feature where a variable automatically recomputes when something it depends on changes: int cartItems = 3 int pricePerItem = 50 reactive int total = cartItems * pricePerItem

screen(`Total: $${tota