Surely simple
Yields:
… not just hello
hello
What am I missing?
NIck
Oh. You need the brackets.
${myTest()}
Yep and don’t forget a return statement as well!
function myTest() local text = "hello" return text end
or directly
function myTest() return "hello" end