Sign in
opensecura
/
3p
/
tock
/
libtock-rs
/
b18a1932dd507d4b5e3887e7f61c96731e4aae55
/
.
/
examples
/
panic.rs
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!"
);
}