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