1 2 3 4 5 6 7 8 9
namespace Math { int add() { return 5; } } // namespace Math int main() { return Math::add(); }