blob: 5abc01aff672ba1f7f6761e708b89ee25d7553cf [file] [log] [blame]
// Triggers the panic handler. Should make all LEDs flash.
#![no_std]
use libtock::result::TockResult;
#[libtock::main]
async fn main() -> TockResult<()> {
panic!("Bye world!");
}