Help for this page

Select Code to Download


  1. or download this
        $x = (($foo,$bar) = (3,2,1));       # set $x to 3, not 2
        $x = (($foo,$bar) = f());           # set $x to f()'s return count
    
  2. or download this
        $count = () = $string =~ /\d+/g;