I'm new to Perl, and I'm trying to use an 'if' statement, but it's not working. I want it to execute the block of code as long as $condition is not equal to "SN" and not equal to "SU". What is wrong with my code here? Thanks. :D
if !($condition eq "SN") && if !($condition eq "SU")
{
#Code
}