From 7654d9ef9d3973ea120e316e148e999d70a6fab2 Mon Sep 17 00:00:00 2001 From: shoully Date: Sat, 20 Dec 2014 07:06:16 -0800 Subject: [PATCH] Updated Home (markdown) --- Home.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Home.md b/Home.md index be11a12..a5992ce 100644 --- a/Home.md +++ b/Home.md @@ -5,14 +5,15 @@ Welcome to the flight wiki! Flight is a fast, simple, extensible framework for PHP. Flight enables you to quickly and easily build RESTful web applications. - require 'flight/Flight.php'; +```php +require 'flight/Flight.php'; - Flight::route('/', function(){ - echo 'hello world!'; - }); - - Flight::start(); +Flight::route('/', function(){ + echo 'hello world!'; +}); +Flight::start(); +``` [Learn more](http://flightphp.com/learn) ### Requirements