Benutzer:Boguslaw Sylla

aus Wikipedia, der freien Enzyklopädie
Zur Navigation springen Zur Suche springen
 /*******************************************************************************
  * The next c++ class describes me.
  ******************************************************************************/
 
 class Nestor {
   public:
     string First_Name;   // Boguslaw Adam Isaak
     string Last_Name;    // Sylla
     string Profession;   // Computer Science and Electrical Engineering Student
     string Gender;       // Male
     string Birthday;     // 1980-01-12, Opole, Poland
     string City;         // Wiesbaden
     string Country;      // Germany
     int    Level;
   // Constructor:
     Nestor(Date birth) {}    // live long and prosper
   // Destructor:
     ~Nestor(Date death) {    // go to hell next level
         Level++;
     }
 }