ling-lang 2030.0.1

Ling - The Omniglot Systems Language
1
2
3
4
5
6
7
8
/*
 * Placeholder module: src/core/result.rs
 */

use super::error::LingError;

/// Project-wide result alias.
pub type LingResult<T> = Result<T, LingError>;