fn main() {
// ANCHOR: here
let x = 5;
match x {
1..=5 => println!("one through five"),
_ => println!("something else"),
}
// ANCHOR_END: here