You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
319 B
Perl

$testvalue = 10;
if ((my $variable1 = 10) > $testvalue ) {
print "Value, $variable1, is greater than the test value.\n";
} elsif ($variable1 < $testvalue) {
print "Value, $variable1, is less than the test value.\n";
} else {
print "Value, $variable1, is equal to the test value.\n";
}