Skip to content
View stpht's full-sized avatar
πŸ§™β€β™‚οΈ
Not all who namespace are std
πŸ§™β€β™‚οΈ
Not all who namespace are std
  • Cologne, Germany

Block or report stpht

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
stpht/README.md

Oh! Hello there πŸ‘‹ γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€

#include <iostream>
#include <string>
#include <vector>

class SoftwareDeveloper {
private:
    std::string name;
    std::string status;
    std::vector<std::string> tongue_spoken;
    std::vector<std::string> adventure_prior;
    std::vector<std::string> venture_exploratory;
    std::string familiar;

public:
    SoftwareDeveloper() : 
        name("Yann Stephant"),
        status("ongoing professional Training"),
        tongue_spoken({"de_DE", "en_US", "fr_FR"}),
        adventure_prior({"BA in Communication Science", "Film Crew", "Military"}),
        venture_exploratory({"Forest Wandering", "Philosophy", "Science/Tech", "Survey of Celestial Influences", "Workout"}),
        familiar("Doggy") {}

    void say_something() const {
        std::cout << "I explore the great realm of programming to conjure up innovative projects." << '\n';
        std::cout << "Thanks for swinging by!" << std::endl;                            
    }
};

int main() {
    const SoftwareDeveloper me;
    me.say_something();
    return 0;
}

Popular repositories Loading

  1. stpht stpht Public