lotharschulz / lotharschulz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

    GitHub       

     

data class Lotharschulz (
    val passion: List<String> = listOf<String>("Leadership", "Software", "Engineering"),
    val naturalLanguages: List<String> = listOf<String>("de", "en"),
    val programmingLanguages: List<String> = listOf<String>("Kotlin", "Java", "Python", "Typescript", "Golang"),
){
    fun sayHi() = println("Hey there, nice to meet you ;-)")
}

fun main() = println(Lotharschulz().sayHi())

About