โ CAVIN โ
FrontEnd Developer | Open Source Contributor | BackEnd Developer(Ktor)
"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 Kotlin
- ๐๏ธ 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()
}