Hi,
I’ve got two files: a.kt and b.kt
package a
fun g(i: Int): String = "${K()} ${fa(i)}"
and
package b
import a.*
fun main() {
println(g(1))
}
On Intellij IDE the import works fine, but if I compile the files from the command line using konanc.exe, it won’t work, saying g is unknown.
How do you import packages?
Thank you very much for reading.