Skip to content

Instantly share code, notes, and snippets.

@mykiwi
Created June 15, 2021 21:31
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 mykiwi/3e22492d1bfb05c80194e829055d07bc to your computer and use it in GitHub Desktop.
Save mykiwi/3e22492d1bfb05c80194e829055d07bc to your computer and use it in GitHub Desktop.
melody gist integration test
<?php
<<<CONFIG
packages:
- "twig/twig: 3.3.2"
CONFIG;
echo "----------------------------------\n";
$twig = new Twig\Environment(new Twig\Loader\ArrayLoader(array(
'my_template' => 'Hello {{ name }}',
)));
echo $twig->render('my_template', array('name' => 'greg'));
echo "\n----------------------------------\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment