Help for this page

Select Code to Download


  1. or download this
    #
    open my $READ, "-|",  "./dialog.pl";
    while (<$READ>)
    ...
                    print $_;
            }
    close $READ;
    
  2. or download this
    print "How old are you? ";
    my $age = <>;
    print "You are $age.";