Public.jl

Author JuliaLang
Popularity
9 Stars
Updated Last
7 Months Ago
Started In
January 2024

Public.jl

Example usage

module HelloWorld

using Public: @public

@public f

function f()
    return "hello"
end

function g()
    return "world"
end

end # module