Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 184 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 184 Bytes

Public.jl

Example usage

module HelloWorld

using Public: @public

@public f

function f()
    return "hello"
end

function g()
    return "world"
end

end # module