When I get libraries with the using
keyword I get warnings in the console on startup. How can I mitigate the problem of name clashes? I don't see library alias keyword as
which is available in other programming languages.
You can use import
instead. You can always alias it yourself since modules are just variables:
import DifferentialEquations
DiffEq = DifferentialEquations
const DE = DifferentialEquations # Don't know if const matters here
There's an open issue for providing import as
syntactic sugar for this. https://github.com/JuliaLang/julia/issues/1255
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With