ling-lang 2030.0.1

Ling - The Omniglot Systems Language
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Placeholder module: src/semantic/symbol.rs
 */

#[allow(dead_code)]
pub struct SymbolTable;

impl SymbolTable {
    pub fn new() -> Self {
        Self
    }
}