ling-lang 2030.0.2

Ling - The Omniglot Systems Language
1
2
3
4
5
6
7
8
// src/main.rs - CLI entry point (WIP)
// The real CLI depends on external crates (clap/anyhow) which are currently not wired in Cargo.toml.
// Keep this binary minimal so `cargo run --bin ling` can build.

fn main() {
    println!("ling (WIP): CLI disabled in this build");
}