You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module Y
export f, g
f(x) = x +1g(x) = x +2endmodule X
export h
using Reexport
@reexportusing..Y: f
h(x) =f(x) +3# Place-1: let `f` available here.endusing..X
# Place-2: let `g` available and `f` not available here.
If I want to let f available at Place-1 and let g available and f not available at Place-2, how should I code?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
If I want to let
f
available atPlace-1
and letg
available andf
not available atPlace-2
, how should I code?Thanks in advance!
The text was updated successfully, but these errors were encountered: