cargo-program 0.0.4

Utility to simplify Gear programs development
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![no_std]

use gstd::msg;

#[gstd::async_main]
async fn main() {
    msg::reply(b"Hello world!", 0, 0);
}

#[no_mangle]
pub unsafe extern "C" fn init() {}