sema-eval 1.6.2

Trampoline-based evaluator and module system for the Sema programming language
Documentation
# sema-eval

Trampoline-based evaluator and module system for the [Sema](https://sema-lang.com) programming language.

This crate contains the core evaluation engine:

- **Trampoline-based TCO** โ€” proper tail-call optimization without stack overflow
- **Special forms** โ€” `define`, `lambda`, `if`, `let`, `cond`, `try/catch`, macros, and more
- **Module system** โ€” `import`, `export`, `module` with caching
- **`EvalContext`** โ€” holds module cache, call stack, span table, and depth counters

## Usage

This is an internal crate. If you want to embed Sema in your application, use [`sema-lang`](https://crates.io/crates/sema-lang) instead:

```toml
[dependencies]
sema-lang = "1.6"
```

๐Ÿ“– [Evaluator internals](https://sema-lang.com/docs/internals/evaluator.html) ยท [Documentation](https://sema-lang.com/docs/) ยท [GitHub](https://github.com/helgesverre/sema)