wasefire-cli-tools 0.4.0

Command-line utilities for Wasefire
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![no_std]
wasefire::applet!();

pub fn main() {
    debug!("hello world");
}

#[cfg(test)]
mod tests {
    use wasefire_stub as _;

    #[test]
    fn assert_true() {
        assert!(true);
    }
}