27#27
Should be changed to:
28#28
To use the namespace you can either place using namespace MyLib
at the top of each file you use the namespace's members in or use the
namespace selectively: MyLib::magnitude(v) very similar to
accessing a public static member function in a class. The use of
namespace clarify code and reduce a lot of extra typing.