ling-lang 2030.0.2

Ling - The Omniglot Systems Language
1
2
3
4
5
6
7
8
9
// src/parser/mod.rs
pub mod ast;
pub mod grammar;

// The lalrpop-generated parser is WIP; keep a minimal stub.
pub fn parse(_source: &str) -> Result<crate::parser::ast::Program, String> {
    Ok(crate::parser::ast::Program { items: Vec::new() })
}