- or download this
grep /testme/, @array ? qq! yes ! : qq! no !
- or download this
grep /testme/, ( @array ? qq! yes ! : qq! no ! )
- or download this
grep(/testme/, @array) ? qq! yes ! : qq! no !
- or download this
(grep /testme/, @array) ? qq! yes ! : qq! no !
- or download this
grep /testme/, @array ? qq! yes ! : qq! no !
- or download this
(grep /testme/, @array) ? qq! yes ! : qq! no !
- or download this
my $string = qq! first !
. ( grep /testme/, @array ? qq! yes ! : qq! no ! )
. qq! end !;
- or download this
my $string = qq! first !
. ( (grep /testme/, @array) ? qq! yes ! : qq! no ! )
. qq! end !;