blob: ee2044497f18f79f2d353211e6ae90a736522ada [file] [log] [blame]
Roman Elizarov5459c102020-08-11 12:27:36 +03001// This file was automatically generated from builtin-classes.md by Knit tool. Do not edit.
2package example.exampleBuiltin01
3
4import kotlinx.serialization.*
5import kotlinx.serialization.json.*
6
7import kotlin.math.*
8
9@Serializable
10class Data(
11 val answer: Int,
12 val pi: Double
13)
14
15fun main() {
16 val data = Data(42, PI)
17 println(Json.encodeToString(data))
18}