uce/site/demo/call_file_funcs.uce

8 lines
162 B
Plaintext

// Minimal exported helper used by the `unit_call()` demo page.
EXPORT DValue* test_func(DValue* call_param)
{
print("HELLO FROM TEST FUNCTION");
return(0);
}