canpack_example_hello/
lib.rs

1canpack::export! {
2    pub fn canpack_example_hello(name: String) -> String {
3        format!("Hello, {name}!")
4    }
5}