oak_zig/
lib.rs

1#![feature(new_range_api)]
2#![doc(html_logo_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
3#![doc(html_favicon_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
4
5pub mod kind;
6pub mod language;
7pub mod lexer;
8pub mod parser;
9
10pub use crate::{kind::ZigSyntaxKind, language::ZigLanguage, lexer::ZigLexer, parser::ZigParser};