basic problem with UDF
I'm very frustrated calling a UDF, not getting the correct results
Here's the function, placed in a template named "basic_function.cfm"
<cffunction name="test" access="public" output="yes" returnType="string">
<cfreturn "Hello World">
</cffunction>
<cfoutput>#test#</cfoutput>
The output I get: cfbasic_function2ecfm687063398$funcTEST@70c49b0c
How can I get the string "Hello World"?
