Help for this page

Select Code to Download


  1. or download this
    use Errno qw(EINVAL);
    use Tie::Scalar;
    
  2. or download this
    sub AUTOLOAD {
        my $constname;
    ...
        eval "sub $AUTOLOAD { $val }";
        goto &$AUTOLOAD;
    }
    
  3. or download this
    $ make test
    PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_h
    +arness(0, 'blib/lib', 'blib/arch')" t/*.t
    ...
    # Looks like you planned 18 tests but ran 4.
    # Looks like your test exited with 255 just after 4.
    $
    
  4. or download this
    ok (tie(my $tiedScalar, 'IPC::MMA::Scalar', $scalar), "tie scalar");