Help for this page

Select Code to Download


  1. or download this
    perl -Mstrict -M-strict=refs -e "print {select()} 6"
    6
    
  2. or download this
    use strict;
    no strict 'refs'
    print {select()} 6;