blob: 3a5ebb94085c1ae828e9fefd61b4e87d58d7edc1 [file] [log] [blame] [edit]
// This file was automatically generated from basic-serialization.md by Knit tool. Do not edit.
package example.exampleBasic02
import kotlinx.serialization.*
import kotlinx.serialization.json.*
@Serializable
class Project(val name: String, val language: String)
fun main() {
val data = Project("kotlinx.serialization", "Kotlin")
println(Json.encodeToString(data))
}