Skip to content

Instantly share code, notes, and snippets.

@davidjwiner
Created July 7, 2020 01:13
Show Gist options
  • Save davidjwiner/5dcbc1bdddef0484d8fb746db26e3411 to your computer and use it in GitHub Desktop.
Save davidjwiner/5dcbc1bdddef0484d8fb746db26e3411 to your computer and use it in GitHub Desktop.
class Person(val name: String)
fun printJson() {
val gson = Gson()
val person = Person("Søren Gjesse")
println(gson.toJson(person))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment