Public.jl

Example usage

module HelloWorld

using Public: @public

@public f

function f()
    return "hello"
end

function g()
    return "world"
end

end # module