Skip to content

Instantly share code, notes, and snippets.

@dgmike
Created November 15, 2009 15:31
Show Gist options
  • Save dgmike/235282 to your computer and use it in GitHub Desktop.
Save dgmike/235282 to your computer and use it in GitHub Desktop.
Simple Application using Ice-Baby Framework
<?php
include('ice/app.php');
app(array(
'.*' => 'Welcome'
));
class Welcome
{
public function get()
{
print "Hello from North Pole";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment