Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 194 Bytes

File metadata and controls

16 lines (11 loc) · 194 Bytes
#ifndef CPPLV1_PERSON_H
#define CPPLV1_PERSON_H

#include <iostream>
#include <string>

struct Person {
    std::string name;
    std::string addrress;
};


#endif //CPPLV1_PERSON_H