ternlang-core 0.3.3

Compiler and VM for Ternlang — balanced ternary language with affirm/tend/reject trit semantics, @sparseskip codegen, and BET bytecode execution.
Documentation
// SPDX-License-Identifier: LGPL-3.0-or-later
// Ternlang — RFI-IRFOS Ternary Intelligence Stack
// Copyright (C) 2026 RFI-IRFOS
// Open-core compiler. See LICENSE-LGPL in the repository root.

pub mod trit;
pub mod types;
pub mod vm;
pub mod lexer;
pub mod ast;
pub mod parser;
pub mod semantic;
pub mod codegen;
pub mod stdlib;
pub mod wasm_simd;

pub use trit::Trit;
pub use vm::bet::{pack_trits, unpack_trits, BetFault};
pub use lexer::Token;
pub use ast::*;
pub use parser::Parser;
pub use semantic::SemanticAnalyzer;
pub use codegen::betbc::BytecodeEmitter;
pub use vm::BetVm;
pub use stdlib::{StdlibLoader, ModuleResolver};