The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package t::Module::Or;

use Data::Dumper;

# ABSTRACT: This module is a test module

sub test {
    my $Self = shift;

    my $op1 = 1;
    my $op2 = 3;

    if ( $op1 or $op2 ) {
        print "yes";
    }

    if ( $op1 || $op2 ) {
        print "yes";
    }
}

1;