Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $pt2 = {value => "C", next => $pt};
    $pt = {value => "B", next => $pt2};
    my $L = { value => "A", next => $pt};
    
  2. or download this
    ABCD
    4