summaryrefslogtreecommitdiff
path: root/src/semantic/types.rs
blob: 2d76387f66b8d49c4ce0ebcbdb34009581b1e72d (plain)
1
2
3
4
5
6
7
#[derive(Debug)]
pub enum Ty {
    Int,
    String,
    Nil,
    Unit,
}