Files
LanguageBasics/l33tcode_reversewords/Rust/l33tcode_reversewords.rs
2025-06-07 11:38:03 -04:00

14 lines
200 B
Rust

trait Solution {
fn reverse_words(s: String) -> String;
}
impl Solution {
pub fn reverse_words(s: String) -> String {
}
}
fn main() {
println!("Hello, World!");
}