sylhare/Kotlin

View on GitHub
hello-kotlin/src/main/kotlin/hello/HelloWorld.kt

Summary

Maintainability
A
0 mins
Test Coverage
package hello



class HelloWorld {

    internal fun greeting(): String {
        return "Hello, world!"
    }
}