1 2 3 4 5 6 7 8 9 10 11
#![no_std] #![no_main] use ckb_std::{default_alloc, entry}; entry!(main); default_alloc!(); fn main() -> i8 { 0 }