Help for this page

Select Code to Download


  1. or download this
    my $suffix = given ($type) {
      when ("csv") { "txt" }
      when ("xml") { "xml" }
    };
    
  2. or download this
    my $suffix = do { my $result; given ($type)
      when ("csv") { $result = "txt" }
      when ("xml") { $result = "xml" }
      ... 
    } $result };