You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pubfna(){let int_reference = &3;match int_reference {&(0..=5) => (),/// will give us a range pattern
_ => (),};let x = 0;match x {(3) => {},/// will give us a literal pattern((3)) => {},/// likewise
_ => {},};}