Hey!! I'm Echo Lumaque, a Senior Software Engineere for an international company based in Dubai, United Arab Emirates.
I hold two degrees from the Polytechnic University of the Philippines. I graduated Magna Cum Laude with a Diploma in Information Communication Technology from the PUP Institute of Technology. My second degree is a Bachelor of Science in Information Technology from the College of Computer and Information Sciences, where I graduated Cum Laude.
import Foundation
class EchoLumaque {
var name: String
var username: String
var location: String
var linkedIn: URL
var workLocation: String
init() {
name = "Echo Lumaque"
username = "echolumaque"
location = "Valenzuela City, Philippines"
linkedIn = URL(string: "https://www.linkedin.com/in/echo-lumaque")
workLocation = "Dubai, United Arab Emirates"
}
var description: String {
return "Hello, my name is \(name), also known as \(username). I'm currently based in \(location) and working in \(workLocation). Connect with me on LinkedIn: \(linkedIn.absoluteString)."
}
}
// Usage
let me = EchoLumaque()
print(me.description)