Help for this page
my $test_result = <some test that returns a Boolean value>; print $test_result ? qw( c ) : qw( a b );
my $test_result = <some test that returns a Boolean value>; my @values = $test_result ? qw( c ) : qw( a b ); print @values;