Skip to content

Instantly share code, notes, and snippets.

@jdp
Created July 11, 2009 23:41
Show Gist options
  • Save jdp/145435 to your computer and use it in GitHub Desktop.
Save jdp/145435 to your computer and use it in GitHub Desktop.
<?php
require 'tessera.php';
class BasicApp extends Tessera {
function index() {
echo "Deep down, deep down, dadi dadu dadu dadi dada";
}
}
$basic = new BasicApp(array(
'/' => 'index',
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment