Initial commit

This commit is contained in:
2026-02-23 16:19:27 +01:00
commit f1f11ecf9b
7 changed files with 174 additions and 0 deletions

16
namecollision/main.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include <iostream>
using namespace std;
void print_obj();
namespace nt {
void print() {
cout << "Hello from namespace\n";
}
}
int main() {
nt::print();
print_obj();
return 0;
}