#include <iostream>
#include "me.h"
int main()
{
Brain b;
Consciousness c;
Information i;
b.init();
c.init();
i.init();
std::cout << "Hello CodeCall!\nMy name is " << i.name
<< ". I live in " << i.country
<< " in a city named " << i.city
<< ". I am only " << i.age
<< " years old so be nice!\n\n"
<< "I have been programming C/C++ for about one(1) and a half(0.5) years.\n"
<< "I want to work in the game industry and at the moment I am learning the basics in c++\n"
<< "to be able to go a course at the university. I do not know what university yet!\n";
<< "Hope you people are nice here even to a somewhat newbie c++ coder.\n\n";
<< "Best regards\nFrozenSnake";
return 0;
}
Now lets run this!Brain initiated...
Consciousness initiated...
Information initiated...
Hello CodeCall!
My name is Kim. I live in Sweden in a city named Gävle. I am only 24 years old so be nice!
I have been programming C/C++ for about one(1) and a half(0.5) years.
I want to work in the game industry and at the moment I am learning the basics in c++
to be able to go a course at t he university. I do not know what university yet!
Hope you people are nice here even to a somewhat newbie c++ coder.
Best regads
FrozenSnake


Sign In
Create Account


Back to top











