9 lines
130 B
Rust
9 lines
130 B
Rust
pub fn main() {
|
|
let thing = "{{ f }}";
|
|
let f = thing.find("{{");
|
|
|
|
if f.is_none() {
|
|
println!("None!");
|
|
}
|
|
}
|