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