加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MyModule.jl 323 Bytes
一键复制 编辑 原始数据 按行查看 历史
魏坤 提交于 2018-08-01 12:24 . 实例首次上传
module MyModule
using Lib
using BigLib: thing1, thing2
import Base.show
importall OtherLib
# 导出以供外部使用
export MyType, foo
# 定义的类型
struct MyType
x
end
# 定义的函数
bar(x) = 2x
# 定义的函数
foo(a::MyType) = bar(a.x) + 1
#
show(io::IO, a::MyType) = print(io, "MyType $(a.x)")
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化