Hello world!

This commit is contained in:
Vladan Popovic 2022-06-10 01:28:39 +02:00
parent 21d8e85292
commit e0230679c2
11 changed files with 282 additions and 0 deletions

5
src/main.rs Normal file
View file

@ -0,0 +1,5 @@
use esp_idf_sys as _; // If using the `binstart` feature of `esp-idf-sys`, always keep this module imported
fn main() {
println!("Hello, world!");
}