1 2 3 4 5 6 7 8 9 10 11
#![no_std] use gstd::msg; #[no_mangle] pub unsafe extern "C" fn handle() { msg::reply(b"Hello world!", 0, 0); } #[no_mangle] pub unsafe extern "C" fn init() {}