From ae0fa4026122a8fdf3b7f96693c9eea162b2533a Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Fri, 10 Oct 2025 14:28:38 -0700 Subject: [PATCH] calm yourself --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0505b5c..30e24a1 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Interactive REPL for exploring instructions: ./bin/repl -Type opcodes interactively and see the stack and variables update in real-time. +Type opcodes interactively and see the stack and variables update in real-time. Commands: `clear`, `reset`, `exit`. @@ -47,7 +47,7 @@ Commands: `clear`, `reset`, `exit`. - Tail call optimization with unbounded recursion (10,000+ iterations without stack overflow) - Exception handling (PUSH_TRY, PUSH_FINALLY, POP_TRY, THROW) with nested try/finally blocks and call stack unwinding - Native function interop (CALL_NATIVE) with sync and async functions -- **Auto-wrapping native functions** - register functions with native TypeScript types instead of Value types +- Write native functions with regular TypeScript types instead of Shrimp's internal Value types ## Design Decisions