โ CAVIN โ
Software Engineer | Open Source Contributor
"Every great developer got there by solving problems they were unqualified to solve until they actually did it." ๐พ๏ธ
Cheers! ๐ฅ๐ฅ
- ๐ Hi, Iโm Cavin
- ๐ Iโm a developer who loves listening to what humans and machines have say to me
- ๐ฑ Iโm currently learning how to communicate to computers and machines
- ๐๏ธ Iโm looking to collaborate on anything that I can help with
- ๐ซ How to reach me on Discord
class SoftwareEngineer(
val name: String = "Cavin",
val role: String = "Software Engineer",
val languages: List<String> = listOf("JavaScript", "TypeScript", "Python", "Kotlin", "Java"),
val interests: List<String> = listOf("Open Source", "AI/ML", "DevOps", "Mobile Development", "BackEnd Development", "FrontEnd Development"),
val hobbies: List<String> = listOf("Gaming", "Reading", "Music", "Traveling", "Coding", "Learning")
) {
fun introduce() {
println("Hi, I'm $name, a $role who loves speaking to machines using programming languages like ${languages.joinToString(", ")} building on interests like ${interests.joinToString(", ")} and enjoys ${hobbies.joinToString(", ")}.")
}
}
fun main() {
val softwareEngineer = SoftwareEngineer()
softwareEngineer.introduce()
}




