ternlang-core 2.0.0

Compiler and VM for Ternlang — balanced ternary language with affirm/tend/reject trit semantics, @sparseskip codegen, and BET bytecode execution.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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.
//
// ┌─────────────────────────────────────────────────────────────────────────────┐
// │  DEPRECATED — use `types/trit.rs` instead.                                   │
// │  This module retained for backward compatibility with crates that import      │
// │  `ternlang_core::Trit`. The canonical Trit now lives at                          │
// │  `ternlang_core::types::trit` and is re-exported as `ternlang_core::Trit`.     │
// └─────────────────────────────────────────────────────────────────────────────┘

#[deprecated(note = "use `ternlang_core::types::trit::Trit` instead")]
pub use crate::types::trit::Trit;