<?php
class helloController extends ezcMvcController
{
    public function 
doGreet()
    {
        
$ret = new ezcMvcResult;
        
$ret->variables['greeting'] = 'Hello World!';
        return 
$ret;
    }
?>