Skip to main content

seqc/
ast.rs

1//! Abstract Syntax Tree for Seq
2//!
3//! Minimal AST sufficient for hello-world and basic programs.
4//! Will be extended as we add more language features.
5
6mod program;
7mod types;
8
9#[cfg(test)]
10mod tests;
11
12pub use types::*;