uce/site/demo/call_file_funcs.uce
2026-07-18 17:27:19 +00:00

13 lines
226 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);
}
RENDER(Request& context)
{
print("HELLO FROM UNIT RENDER");
}