Skip to content

Instantly share code, notes, and snippets.

@zehpatricio
Created March 9, 2022 20:27
Show Gist options
  • Save zehpatricio/e6b7ea7a27a63691ca50be89b57d24b5 to your computer and use it in GitHub Desktop.
Save zehpatricio/e6b7ea7a27a63691ca50be89b57d24b5 to your computer and use it in GitHub Desktop.
// ...
fun main() {
val aluno = Json.decodeFromString<Aluno>("""{
"nome":"Luke Skywalker",
"media":9.8,
"endereco":{"planeta":"Tatooine","galaxia":"Outer Rim"}
}""")
println(aluno.nome)
println(aluno.media)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment