mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-01-03 13:53:11 +00:00
14 lines
201 B
Rust
14 lines
201 B
Rust
#![no_std]
|
|
#![feature(start)]
|
|
|
|
use core::panic::PanicInfo;
|
|
|
|
#[panic_handler]
|
|
fn panic(_info: &PanicInfo) -> ! {
|
|
loop {}
|
|
}
|
|
|
|
#[start]
|
|
fn main(_argc: isize, _argv: *const *const u8) -> isize {
|
|
0
|
|
} |