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