`Foo.kt` results in a class named `FooKt`, but thi...
# announcements
d
Foo.kt
results in a class named
FooKt
, but this can be changed to something like
Bar
with the
JvmName
annotation at the top of the file:
@file:JvmName("Bar")
@christophsturm