Mehrshad

103
reputation
5

I am a student at university, studying hardware engineering. I'm interested in programming micro-controllers. I have an intermediate knowledge of C and C++ programming. I had also wrote programs using PHP, HTML, CSS & JS.

#include <iostream>
using namespace std;
int main()
{
    new Mission mission;
    while(mission.succeed() == false)
    {
        mission.tryAgain();
    }
    return 0;
 }