Help for this page

Select Code to Download


  1. or download this
    $foo = $bar;
    if( $foo ) { ...
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    if ($foo = $bar) {
                print "foo is bar two too\n";
    }
    
  3. or download this
     
    Found = in conditional, should be == at ./tpl line 8.
    foo is 2
    foo is bar two too