Skip to content

Instantly share code, notes, and snippets.

@weltonrodrigo
Created October 5, 2012 21:57
Show Gist options
  • Save weltonrodrigo/3842663 to your computer and use it in GitHub Desktop.
Save weltonrodrigo/3842663 to your computer and use it in GitHub Desktop.
use v5.14;
use utf8;
use Mojo::Parameters;
use URI::Encode q/uri_encode/;
my %params = (
email => 'fulano@orgao.gov.br',
date => "12/12/1980",
);
my $p = new Mojo::Parameters();
$p->params([%params]);
say $p->to_string;
# email=fulano@orgao.gov.br&date=12/12/1980
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment