14 lines
200 B
Rust
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!");
|
|
}
|