Is it possible to get FUNCTIONNAME to work inside a function that generates the docstring? Something similar to ``` function gen_docstring() """ $(FUNCTIONNAME)(x) """ end @doc gen_docstring() function f(x) x end ```