summaryrefslogtreecommitdiff
path: root/src/ast.rs
blob: b5f20499c8b517d0bee99673a6e33fdf43fe22a9 (plain)
1
2
3
4
5
6
7
#[derive(Debug)]
pub struct Program(pub Box<Expression>);

#[derive(Debug)]
pub enum Expression {
    Number(u64),
}