If you write it imports all bunch of methods into the current scope.
using Plots
plot(rand(5,5))
I need only one method, is it possible to write the same code but without using
or importing anything, I don't want to pollute the current scope with Plots
exports and don't mind to prefix it with package name every time I use it.
Plots.plot(rand(5,5))