Skip to content
Snippets Groups Projects
Select Git revision
  • 147285b74a400e627ffb303203b8bc76cc2baf56
  • master default protected
  • home_exam
3 results

ast.rs

Blame
  • Forked from Per Lindgren / D7050E_2020
    Source project has a limited visibility.
    ast.rs 77 B
    // ast
    
    #[derive(Debug)]
    pub enum NumOrId {
        Num(usize),
        Id(String),
    }