Files
uce/site/demo/call_file_funcs.uce
T
2026-06-12 11:05:52 +00:00

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);
}