πŸ“˜ Shortcut operator // in Perl 6

πŸ“˜ Shortcut operator // in Raku

N. B. Perl 6 has been renamed to Raku. Click to read more.


// returns the first defined operand. The operator is called a defined-or operator. It is also is a shortcut operator.

my $x;
my $y = 42;
my $z;
say $x // $y // $z; # 42

Leave a Reply

Your email address will not be published. Required fields are marked *

Retype the CAPTCHA code from the image
Change the CAPTCHA codeSpeak the CAPTCHA code