Help for this page

Select Code to Download


  1. or download this
    print $status;  # Automatically gets converted to a string.
    
  2. or download this
    my $status_str1 = "$status";      # Auto converted to a string.
    my $status_str2 = '' . $status;   # Auto converted to a string.
    my $status_str3 = $status->value();