Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- namespace Sobolev
- {
- int n1, n2 = 2111;
- int foo()
- {
- return 2112;
- }
- }
- using namespace std;
- using namespace Sobolev;
- //////////////////////////////////////////////////////////////////////
- int main()
- {
- setlocale(LC_ALL, "rus");
- std::cout << "foo = " << foo() << std::endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement