1
2
3
4
5
6
7
8
9
extern crate libflo_error;

use libflo_error::*;

#[no_mangle]
pub fn hello_world() -> Result<()> {
    println!("hello_world");
    Ok(())
}