Skip to content

Commit 6b1d50c

Browse files
Offer example
1 parent abcacb2 commit 6b1d50c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/patterns.md

+6
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,12 @@ println!("{}", match ph {
458458
_ => unreachable!(),
459459
});
460460

461+
# let uint = 5;
462+
match uint {
463+
0 => "zero!",
464+
1.. => "positive number!",
465+
}
466+
461467
// using paths to constants:
462468
# const TROPOSPHERE_MIN : u8 = 6;
463469
# const TROPOSPHERE_MAX : u8 = 20;

0 commit comments

Comments
 (0)