Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    #Generates a warning that $x is only used once.. Incorrectly.
    
    # {my $work_around=$x} # Uncomment to make the error go away.
    
  2. or download this
    {
         my @work_around=($x,$y,$z);
    }