From: cassowarii <2374677+cassowarii@users.noreply.github.com> Date: Sun, 19 Jul 2026 05:23:36 +0000 (-0700) Subject: update readme slightly X-Git-Url: https://www.git.cassowary.me/gitweb.cgi?a=commitdiff_plain;h=88597a92aa165f198b74a63c08475170067e65a7;p=sarabande.git update readme slightly --- diff --git a/README.md b/README.md index 554ddf1..f1ebe43 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,13 @@ This is a little dynamically-typed programming language I've been working on. -It supports lists, hash tables, anonymous functions, and lexical closures, and it compiles down to a bytecode that's interpreted by a virtual machine. +It supports lists and hash tables. It has a sort of simple object system based around the concept of lexical closures, +and an execution model based on value semantics with explicit references. (will probably add these next) -It is still extremely a work in progress, but we can already do some little basic test math programs: +It compiles down to a bytecode that's interpreted by a virtual machine. +It's not the fastest in the world, but performance is within spitting distance of the average scripting language. + +It's still a work in progress, but it is starting to come together. ``` println `Hello, world!`