| <?php
namespace{
FUNCTION add($x,$y){
return $x+$y;
}
FUNCTION divide($x,$y){
return $x/$y;
}
FUNCTION substract($x,$y){
return $x-$y;
}
FUNCTION product($x,$y){
return $x*$y;
}
}
namespace kakao;
FUNCTION Show_me_hello(){
echo '<br>hello<br>';
	if(!function_exists('kakao\fortest')){
		function fortest(){
			$x=25;
			while($x>0){
				yield $x;
				$x--;
			}
		}
	}
	if(!function_exists('kakao\fortest2')){
		function fortest2(){
			$x=25;
			while($x>0){
				yield $x.' from function: '.__FUNCTION__;
				$x--;
			}
		}
	}
}
?>
 |