Skip to content

Instantly share code, notes, and snippets.

@francescoagati
Last active December 28, 2015 08:29
Show Gist options
  • Save francescoagati/7471686 to your computer and use it in GitHub Desktop.
Save francescoagati/7471686 to your computer and use it in GitHub Desktop.
pratphall and slim
<?php
$app = new Slim\Slim();
$app->get('/hello/:name', function ($name) {
echo('Hello' . $name);
});
$app->run();
import Slim = Slim.Slim
var app = new Slim.Slim()
app.get('/hello/:name', function (name) {
echo("Hello" + name)
})
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment