what about package variables? is it possible to re...
# multiplatform
d
what about package variables? is it possible to retrieve them from Swift? for example, this is declared inside a file in commonMain:
Copy code
package com.project.shared.valuedefs

val myList = listOf("A","B","C")
can I access it from Swift and how?
k
SourceFileNameKt.myList
you can inspect the generated header
d
@Kris Wong thanks!