Hello, I have a file with ``` package com.company...
# getting-started
t
Hello, I have a file with
Copy code
package com.company

class MyClass {...}

fun main() = ...
I am building a fat jar. But now I want to run it. Using
java -jar my-fat.jar
works, but I'd like to know how I could use it with
java -cp my-fat.jar com.company.MainKt
which doesn't work. How I could I make it? Thanks