Hello World! <?php

# echo "Hello World!"; // ist zu einfach!

function concat($x,$y) {
 return 
$x.$y;
}

function 
output($x) {
 echo 
$x;
}

function 
space($x) {
 return 
preg_replace('/(?<=[[:lower:]])(?=[[:upper:]])/',spc(),$x);
}

function 
upc($x) {
 return 
ucfirst($x);
}

function 
spc() {
 return 
chr(32);
}

function 
exc() {
 return 
chr(ord(spc())+1);
}

function 
d() {
 return 
__FUNCTION__;
}

function 
e() {
 return 
__FUNCTION__;
}

function 
h() {
 return 
__FUNCTION__;
}

function 
l() {
 return 
__FUNCTION__;
}

function 
o() {
 return 
__FUNCTION__;
}

function 
r() {
 return 
__FUNCTION__;
}

function 
w() {
 return 
__FUNCTION__;
}

output(
 
space(
  
concat(
   
upc(
    
concat(
     
h(),
     
concat(
      
e(),
      
concat(
       
l(),
       
concat(
        
l(),
        
o()
       )
      )
     )
    )
   ),
   
upc(
    
concat(
     
w(),
     
concat(
      
o(),
      
concat(
       
r(),
       
concat(
        
l(),
        
concat(
         
d(),
         
exc()
        )
       )
      )
     )
    )
   )
  )
 )
);

show_source(__FILE__);

?>