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

main.rs

Blame
  • Forked from Per Lindgren / D7050E_2020
    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")
    }