Skip to content
Snippets Groups Projects
Select Git revision
  • 04602523ae359a7799418c41035d0977d1d5be7a
  • master default protected
2 results

openocd.gdb

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