Skip to content

Instantly share code, notes, and snippets.

@tadzik

tadzik/ttest.pl Secret

Created February 27, 2018 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tadzik/dd69dabaf78c4fc3273fb2eac78888aa to your computer and use it in GitHub Desktop.
Save tadzik/dd69dabaf78c4fc3273fb2eac78888aa to your computer and use it in GitHub Desktop.
use Template::Mojo;
my $t = Template::Mojo.new(q{
My name is <%= $:name %> and I am <%= $:age %>
});
say $t.render(name => 'Jake', age => 12);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment