Skip to content
View viniciusfdasilva's full-sized avatar
:octocat:
Working from home
:octocat:
Working from home

Block or report viniciusfdasilva

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
viniciusfdasilva/README.md

Hi 👋 I'm Vinicius Silva! 🤓

For detailed information, please visit my website

class AcademicLife {
public:
    Person person;
    string program;
    string university;
    string position;
    string location;
    string research_area;
    bool finished;

    AcademicLife(Person p,string program,string university,string position,string location,string area,bool finished) {
        this->person       = p;
        this->program      = program;
        this->university   = university;
        this->position     = position;
        this->location     = location;
        this->reseach_area = area;
        this->finished     = finished
    }
};

class Person {
public:
    std::string name;
    int age;

    Person(std::string name, int age) {
        this->name = name;
        this->age = age;
    }
};

Person* p = new Person("Vinicius Francisco da Silva", 27);

new AcademicLife(p,"Undergraduate Degree","PUC MINAS","Undergraduate Student","ICEI","Computer Science",true);
new AcademicLife(p,"Postgraduate Latu Sensu Course","UNICAMP","Latu Sensu Student","Extecamp","Data Science",false);
new AcademicLife(p,"Master's Degree","UFMG","Graduate Researcher","Compilers Lab","Compilers",false);

Pinned Loading

  1. danixfs danixfs Public

    Python 1

  2. v_scratch v_scratch Public

    Codes of my learning process in V Programming Language

    V 2

  3. vchip8 vchip8 Public

    CHIP-8 Interpreter Emulator written in V

    V 2 1