Help for this page

Select Code to Download


  1. or download this
    $ cat var_gen.pl
    #!/usr/bin/env perl
    ...
        my $number = length;
        print "$number\n";
    }
    
  2. or download this
    $ cat var_out.pl
    #!/usr/bin/env perl
    while (<>) {
        print "Got $_"
    }
    
  3. or download this
    $ var_gen.pl | var_out.pl
    1
    ...
    Got 3
    Got 4
    Got 5