I started to really like C#’s ?? operator. And I am quite used to the fact, that where there is something handy in some language, it’s most probably in Perl too.
However, I cannot find ?? equivalent in Perl. Is there any?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As of 5.10 there is the
//operator, which is semantically equivalent if you consider the concept ofundefin Perl to be equivalent to the concept ofnullin C#.Example A:
Example B: