7 lines
117 B
Rust
7 lines
117 B
Rust
|
|
use std::ops::Add;
|
||
|
|
|
||
|
|
fn main(){
|
||
|
|
let hello = String::from("Hello world");
|
||
|
|
println!("{}", hello.add("!!!!"));
|
||
|
|
}
|