Help for this page

Select Code to Download


  1. or download this
    ($name eq "")
      ? print q{Sorry, name can't be empty}
      : print "Thank you, $name. Your submission is complete.";
    
  2. or download this
    print +($name eq "")
      ? q{Sorry, name can't be empty}
      : "Thank you, $name. Your submission is complete.";