8 lines
379 B
Rust
8 lines
379 B
Rust
|
|
fn main(){
|
||
|
|
let hello = String::from("Hello world");
|
||
|
|
println!(" Start with \"he\" {} \n Ends with \"rd\" {}\n Contains \"wi\" {}",
|
||
|
|
hello.starts_with("He"),
|
||
|
|
hello.ends_with("ld"),
|
||
|
|
hello.contains("wi"));
|
||
|
|
}
|