Help for this page

Select Code to Download


  1. or download this
    print "hello,\n";
    sleep 2;
    print "world!\n";
    sleep 2;
    print "bye!";
    
  2. or download this
    #hello,   - instantly
    #after 4 seconds delay:
    #world!
    #bye!
    
  3. or download this
    #some kind of cycle:
      {print "\a";
       sleep $timeout;
      }