13 lines
268 B
Kotlin
Vendored
13 lines
268 B
Kotlin
Vendored
import org.jetbrains.kotlinx.dataframe.*
|
|
import org.jetbrains.kotlinx.dataframe.annotations.*
|
|
import org.jetbrains.kotlinx.dataframe.api.*
|
|
import org.jetbrains.kotlinx.dataframe.io.*
|
|
|
|
@DataSchema
|
|
interface Schema {
|
|
val a: Int
|
|
val b: String
|
|
}
|
|
|
|
fun box() = "OK"
|