rust-libutee 0.1.0

Rust library for UTEE-related functionality.
Documentation
1
2
3
4
5
6
7
use rust_utee::trace_print;

// #[unsafe(no_mangle)]
fn main() {
    let s = String::from("Hello, world!");
    trace_print!("{}", s);
}