Skip to content

Instantly share code, notes, and snippets.

@mbmccormick
Created December 23, 2010 04:44
Show Gist options
  • Save mbmccormick/752574 to your computer and use it in GitHub Desktop.
Save mbmccormick/752574 to your computer and use it in GitHub Desktop.
Limonade is a PHP micro framework for rapid web development and prototyping.
<?php
require_once 'library/limonade.php';
dispatch('/', 'hello');
function hello()
{
return 'Hello world!';
}
run();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment