Help for this page

Select Code to Download


  1. or download this
    sub action {
        print "Action!";
    }
    
    action;
    
  2. or download this
    action;    # error under strict and -w
    
    sub action {
        print "Action!";
    }