initial commit

This commit is contained in:
ivanm 2023-09-11 11:21:13 +02:00
commit a7bb7f03c1
2 changed files with 20 additions and 0 deletions

BIN
metrics Executable file

Binary file not shown.

20
metrics.cpp Normal file
View File

@ -0,0 +1,20 @@
#include <iostream>
using namespace std;
class car {
public:
string brand;
int year;
};
int main() {
cout << "Hello World! \n\n";
car car_obj_1;
car_obj_1.brand = "Mercedes";
car_obj_1.year = 2010;
cout << car_obj_1.brand << " " << car_obj_1.year << "\n";
return 0;
}