“using” is a powerful command which can prevent us from repeatedly writing the namespace in front of the functions we need.
If on one hand this is useful and convenient, on the other side it can lead to “namespace clash”, that is two functions share the same and the computer can’t decide which one you are referring to.
So, be careful “using” it!