# if Greeting.zep ```zep namespace Utils; #include "func.h" class Greeting { public static function say() { C.hello(); } } ``` func.h ```c void hello(){ } ```