_ _ _____ _ _ U _____ u ____ U _____ u |'| |'| ___ |_ " _| |'| |'|\| ___"|U | _"\ u\| ___"|/ /| |_| |\ |_"_| | | /| |_| |\| _|" \| |_) |/ | _|" U| _ |u | | /| |\ U| _ |u| |___ | _ < | |___ |_| |_| U/| |\u u |_|U |_| |_| |_____| |_| \_\ |_____| // \.-,_|___|_,-. _// \\_ // \\ << >> // \\_ << >> (_") ("_\_)-' '-(_/ (__) (__(_") ("_(__) (__)(__) (__(__) (__)
class ComputerEngineer {
name: string;
role: string;
languagesSpoken: string[];
passions: string[];
constructor() {
this.name = "Ammar Yasser";
this.role = "Computer Engineer";
this.languagesSpoken = ["English", "Arabic"];
this.passions = ["Building intuitive user interfaces", "Exploring new technologies", "Solving complex problems"];
}
introduce(): void {
console.log(`Hello, I'm ${this.name}, a passionate ${this.role}.`);
console.log(`I speak ${this.languagesSpoken.join(' and ')}.`);
console.log(`I'm passionate about: ${this.passions.join(', ')}.`);
}
engage(): void {
console.log("I'm excited to share my projects with you! Feel free to explore and connect.");
}
}
const me = new ComputerEngineer();
me.introduce();
me.engage();