# Hello, World Just about every framework ever written has some kind of hello world example included, so it'd be pretty rude of us to break this tradition! We'll start out by looking into the very very basic hello world controller that comes shipped, and will dive bit into it. ## Bare bones First of all open the file `application/classes/Controller/Hello.php` it should look like this: response->body('hello, world!'); } } // End Welcome Lets see what's going on here: `response->body('hello, world!');` : And this is the line which outputs the customary phrase! Now if you open your browser and go to `http://localhost/index.php/hello` (or `http://localhost/hello` if you are using [clean urls](clean-urls)) you should see something like: ![Hello, World!](hello_world_1.png "Hello, World!")