sturdy_couscous/
lib.rs

1use std::ffi::{CString};
2
3pub mod hello {
4    pub fn hello() -> String {
5        String::from("Hello")
6    }
7}