Unicode-Normalize

 view release on metacpan or  search on metacpan

t/tie.t  view on Meta::CPAN

	$p = !defined $x ? !defined $r : !defined $r ? 0 : $r eq $x;
    }
    print $p ? "ok" : "not ok", ' ', ++$count, "\n";
}

ok(1);

package tiescalar;
sub TIESCALAR {
    my ($class, $instance) = @_;
    return bless \$instance => $class;
}
sub FETCH   { return ${$_[0]}++ }
sub STORE   { return ${$_[0]} = $_[1] }
sub DESTROY { undef ${$_[0]} }

#########################

package main;

tie my $tie1, 'tiescalar', "123";

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.501 second using v1.00-cache-2.02-grep-82fe00e-cpan-cec75d87357c )