int main(){
    Author author = Author("Douglas", "Adams", 1952);
    // Author { firstName: 'Douglas', lastName: 'Adams', yearBorn: 1952 }

    author.firstName = "Doug";
    // Author { firstName: 'Doug', lastName: 'Adams', yearBorn: 1952 }

    string fullName = author.getFullName();
    // "Doug Adams"

	return 0;
}