Help for this page

Select Code to Download


  1. or download this
    # This array of hashes keeps track of all test results
    my @tests = (
        { name    => 'Ping Test',
    ...
    
    sub pingtest {print "ping\n"; return 123}
    sub remdial {print "dial\n"; return 456}
    
  2. or download this
    ping
    123
    dial
    456