// Here is some info about me:D
#include <iostream>
using namespace std;
class kotru
{
string NowLearning[] {"C++", "Python"};
public:
string name = "Arsenij Kotikov";
string website = "https://kotikov.is-a.dev";
string languages[] {"JavaScript", "NodeJs", "HTML", "CSS", "Bootstrap", "PHP"};
void print() {
std::cout << "name" << name << endl;
std::cout << "website" << website << endl;
std::cout << "languages" << languages[] << endl;
std::cout << "languages, learning" << NowLearning[] << endl;
}
};
int main()
{
kotru.print();
}
You can find more information here