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