get('/', function () { echo "Test"; }); $app->get('/hello/:name', function ($name) { echo "Hello, $name"; }); $app->run();