Sign in
bazel
/
rules_kotlin
/
415ee0ff7ac713a3f95f37ba9d3c1bd3dec2a1ff
/
.
/
tests
/
integrationtests
/
jvm
/
basic
/
test_friends
/
Service.kt
blob: 276c2f0ec97470b0eee68c0eb2e3e64458b421e8 [
file
]
package
test
internal
const
val DEFAULT_FRIEND
=
"muchacho"
class
Service
internal
constructor
(
internal
val value
:
String
=
"hello world"
)
{
internal
fun iSayHolla
(
friend
:
String
)
{
println
(
"holla $friend"
)
}
}