portability/test/example_exe.rs
2025-01-29 20:55:08 +01:00

10 lines
141 B
Rust

#![no_std]
#![no_main]
#[panic_handler]
fn handle_panic(_: &core::panic::PanicInfo<'_>) -> ! {
loop {}
}
#[no_mangle]
pub fn main() {}