class gatto__ extends Profile {
constructor() {
this.name = "Matteo";
this.username = "gatto";
this.location = "Italy";
this.languages = ["Python", "JavaScipt", "Typescript"];
this.discord_name = "gatto__";
this.portfolio = "https://solo.to/gatto__";
}
name() {
return this.name;
}
}
const me = new gatto__();