ling-lang 2030.1.5

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

#[allow(dead_code)]
pub struct SymbolTable;

#[allow(dead_code)]
impl SymbolTable {
    pub fn new() -> Self {
        Self
    }
}