6 lines
99 B
Rust
6 lines
99 B
Rust
|
pub mod something {
|
||
|
pub fn something() -> String {
|
||
|
"hello, world!".to_string()
|
||
|
}
|
||
|
}
|