Help for this page

Select Code to Download


  1. or download this
    my @buffer = {}; # Create an empty buffer array
    my $byte = "";
    ...
    }
    print "\nContents of byte is " . $byte . "\n".
    print "\nContents of buffer is " . @buffer . "\n".
    
  2. or download this
    Contents of buffer is 1
    1
    Contents of byte is 24###