On Thursday, February 3, 2022, 15:27:49, Dave Arndt wrote:
function MyFunc(): String; <---- "Invalid prototype for 'MyFunc' (Column 10)
I assume you're trying to use a {code:MyFunc} constant. The function prototype for functions used in {code:…} constants must be
function MyFunc(Param: String): String
(the function must take 1 string parameter).