help wantedmacros
Repository metrics
- Stars
- (48,709 stars)
- PR merge metrics
- (Avg merge 20d 6h) (157 merged PRs in 30d)
Description
eg make this work:
julia> module A
f(x)=1
end
A
julia> module B
f(x)=2
end
B
julia> @deprecate A.f(x) B.f(x)
ERROR: invalid usage of @deprecate