Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of pearcoding

pearcoding

pearcoding has asked 1 questions and find answers to 3 problems.

Stats

45
EtPoint
11
Vote count
1
questions
3
answers

About

Hi, my name is Ömercan Yazici and I am a student from Germany. I am the founder of the Pear3DEngine project, the The great Journey game and some other little projects.

My hobbies include programming, reading, cycling, reading again, walking, thinking, writing, and again reading, physics, mathematics, biology, philosophy, politics and of course reading. I also write novels...

See my webpage or visit me on Twitter ;)

#include <iostream>
#include <string>

int main()
{
    std::string name = "Ömercan Yazici";

    std::cout << "Hello World! Here is "
              << name << "! :D" << std::endl;

    return 0;
}