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/hello.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include <iostream>
using namespace std;
class nt {
public:
void print() {
cout << "Hello from object\n";
}
};
void print_obj() {
cout << "Hello from function\n";
nt obj;
obj.print();
}