Open KingBes opened 1 month ago
Greeting.zep
namespace Utils; #include "func.h" class Greeting { public static function say() { C.hello(); } }
func.h
void hello(){ }
You can achieve this via optimizers - https://docs.zephir-lang.com/latest/optimizers/
Can this method call the c library?
Greeting.zep
func.h