Skip to content
Snippets Groups Projects
Select Git revision
  • da0da8314615f8894ee5ef1a8a8a837f9ab62623
  • master default protected
  • 2a
  • 2b
  • 2c
  • 2d
  • 2e
  • 2f
8 results

guessing_game-4705d3f68048a38e

Blame
  • hello.rs 265 B
    //! Prints "Hello, world!" on the host console using semihosting
    
    #![no_main]
    #![no_std]
    
    use panic_halt as _;
    
    use cortex_m_rt::entry;
    use cortex_m_semihosting::{debug, hprintln};
    
    #[entry]
    fn main() -> ! {
        hprintln!("Hello, world!!").unwrap();
    
        loop {}
    }