Skip to content
Snippets Groups Projects
Select Git revision
  • 753a465a630c4ddcd99b591a6a46a47a8e4bea9e
  • master default protected
  • home_exam
  • wip
4 results

ast.rs

Blame
  • Forked from Per Lindgren / D7050E
    Source project has a limited visibility.
    main.rs 176 B
    use lalrpop_util::lalrpop_mod;
    
    lalrpop_mod!(pub grammar);
    
    use grammar::*;
    
    fn main() {
        println!("hello world");
    }
    
    #[test] 
    fn hello() {
        println!("Hello in test")
    }