Help for this page

Select Code to Download


  1. or download this
    my $variable;
    ANON_SCALAR_BLOCK: {
        my $x = 49;
        $variable = bless \$x, 'Rates::Notification';
    }
    
  2. or download this
    my $variable = do {
            my $x = 49;
            bless \$x, 'Rates::Notification';
        };