{}

Build your resume with HTML & CSS and win $100

Get featured on Programiz PRO and the Wall of Inspiration.

Build your resume with HTML & CSS and win $100

Join Challenge →
Join Challenge →

Build your resume with HTML & CSS and win $100

Get featured on Programiz PRO and the Wall of Inspiration.

Build your resume with HTML & CSS and win $100

Join Challenge →
Join Challenge →
run-icon
main.rs
fn main() { println!("Hello, world!"); let foo = vec![ vec![1,2], vec![2,3] ]; let baa = vec![1,2]; for baz in foo { let is_equal = baz == baa; println!("{is_equal}: {baa:?} == {baz:?}"); } }
Output