| #![no_std] | |
| use libtock::println; | |
| use libtock::result::TockResult; | |
| libtock_core::stack_size! {0x1000} | |
| #[libtock::main] | |
| async fn main() -> TockResult<()> { | |
| let drivers = libtock::retrieve_drivers()?; | |
| drivers.console.create_console(); | |
| println!("Hello Tock World from shodan/sw/matcha/src/main.rs!"); | |
| Ok(()) | |
| } |