๐ฏRich Type SystemGenerics, traits, tagged unions, nominal types, higher-kinded types โ express your domain with confidence.
๐Safe by DefaultPrevents null pointer dereferences, buffer overflows, and use-after-move errors at compile time.
โกOne Clean PipelineLexer โ Parser โ Resolver โ Type Checker โ FlowIR โ Bytecode โ VM โ one implementation, no duplicated semantics.
๐งCompile-Time MetaprogrammingConst if, const predicates, const functions, and type specialization โ compute at compile time, not at runtime.
๐ฅ๏ธNative FFISeamless C++ function binding. Call into existing C/C++ libraries with zero overhead.
๐งฉOwnership ModelValue semantics, references, moves, and partial moves โ fine-grained control over memory without a garbage collector.
๐Verified Bytecode VMVersioned, verified bytecode with per-run fuel budgets, trait-view dispatch tables, and re-entrant compilation (`runNgi`).