fun main() { | |
- val json = "{\"name\": \"John Doe\", \"age\": 200}" | |
+ val json = """{"name": "John Doe", "age": 200}""" | |
println(json) // prints: {"name": "John Doe", "age": 200} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment