– CAVIN –
Software Developer | Open Source Contributor | BackEnd Developer(Ktor, SpringBoot)
"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 Developer",
val languages: List<String> = listOf("JavaScript", "TypeScript", "Python", "Kotlin"),
val interests: List<String> = listOf("Open Source", "AI/ML", "DevOps", "Mobile Development", "Backend 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()
}




