zephir
zephir copied to clipboard
I want the ability to call C functions
Greeting.zep
namespace Utils;
#include "func.h"
class Greeting
{
public static function say()
{
C.hello();
}
}
func.h
void hello(){
}