[tpm] Is there a three-way version of...
Madison Kelly
linux at alteeve.com
Fri May 29 11:10:38 PDT 2009
my $foo=$bar ? "bing" : "bang";
I am probably trying to extend what the above syntax was designed to
address, but I am curious. I've got three strings I want to show based
on the viewing user's credentials. I know I can use:
my $title="";
if ($a)
{
$title="bing";
}
elsif ($b)
{
$title="bang";
}
else
{
$title="bong";
}
But it's quite a bit more code.
Thanks all!
Madi
More information about the toronto-pm
mailing list