Help for this page

Select Code to Download


  1. or download this
    print "enter some text and press enter\n";
    print "enter quit to exit\n";
    ...
        exit if $_ = quit";
        print "I got $_\n";
    }
    
  2. or download this
    print "sleeping: ";
    sleep 2;
    ...
    print "sleeping again: ";
    sleep 2;
    print "done\n"