How to extract the names of functions from a Julia file?

Maybe not the simplest, but this works
Skip the following if that file already contains a module:

module dummy
    include("yourFile.jl")
end

then

syms = names( dummy, all = true )
filter( x->getproperty(dummy,x) isa Function, syms )
4 Likes