Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    print "What is your name? ";
    $name = <STDIN>;
    print "Your name is $name\n";
    
  2. or download this
    #!/usr/bin/perl
    print "Hello, there!\n";