http://perlgeek.de/blog-en/perl-5-to-6/27-common-idioms.html#Numbers `<?` for min, `>?` for max (or inverse?) ``` a <? b # if a < b then a else b a >? b # if a > b then a else b inRange = lower >? x <? upper x >?= 0 x <?= 10 assert 0 <= x <= 10 ```
http://perlgeek.de/blog-en/perl-5-to-6/27-common-idioms.html#Numbers
<?for min,>?for max (or inverse?)