Skip to content

Instantly share code, notes, and snippets.

@bulfaitelo
Last active March 25, 2017 12:45
Show Gist options
  • Save bulfaitelo/3e33f32a7d1063fdb91f302e42c769b2 to your computer and use it in GitHub Desktop.
Save bulfaitelo/3e33f32a7d1063fdb91f302e42c769b2 to your computer and use it in GitHub Desktop.
Test basico.
<?php
// FRAMEWORK F3
$f3 = require('lib/base.php');
// 01) Hello World
$f3->route('GET /',
function() {
echo 'Hello, world!';
}
);
$f3->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment