keleusma 0.1.1

Total Functional Stream Processor with definitive WCET and WCMU verification, targeting no_std + alloc embedded scripting
Documentation
# Script Examples

Standalone Keleusma scripts. Each file demonstrates one feature axis. Run any of them with:

````
keleusma run examples/scripts/<file>.kel
````

| File | Topic | Feature |
|------|-------|---------|
| [`01_arithmetic.kel`]./01_arithmetic.kel | Primitives and operators | `i64`, `f64`, `bool`, arithmetic, comparison, casts |
| [`02_struct_field.kel`]./02_struct_field.kel | Composite types | Struct declaration, construction, field access |
| [`03_enum_match.kel`]./03_enum_match.kel | Pattern matching | Enum declaration, variant construction, `match` |
| [`04_for_in.kel`]./04_for_in.kel | Bounded iteration | `for` over arrays and ranges |
| [`05_pipeline.kel`]./05_pipeline.kel | Pipeline operator | `\|>` left-to-right composition |
| [`06_multiheaded.kel`]./06_multiheaded.kel | Function dispatch | Pattern-matched parameter heads |
| [`07_fstring.kel`]./07_fstring.kel | String interpolation | `f"text {expr}"` desugaring |
| [`08_method_dispatch.kel`]./08_method_dispatch.kel | Traits and impls | Receiver-style method calls |

All scripts are atomic-total (`fn main`), so they run end to end through the CLI. For yield-driven and stream-driven examples, see the Rust embedding examples under [`examples/`](../).