Created
December 23, 2010 04:44
-
-
Save mbmccormick/752574 to your computer and use it in GitHub Desktop.
Limonade is a PHP micro framework for rapid web development and prototyping.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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