Help for this page

Select Code to Download


  1. or download this
    $ perl -wl
    $x = "abc";
    ...
    __END__
    4-arg: b
    3-arg: c
    
  2. or download this
    sub FETCH { my $self=shift; substr($self->{string}, $self->{length}, $
    +self->{offset}) }
    sub STORE { my ($self, $new) = @_; substr($self->{string}, $self->{len
    +gth}, $self->{offset}, $new) }