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

rtt_rtic_i2c.rs

Blame
  • 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")
    }