Skip to content

Commit

Permalink
docs(examples): add kotlin string literals
Browse files Browse the repository at this point in the history
  • Loading branch information
zoobestik committed Sep 26, 2019
1 parent 51bfa7f commit f262ef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Turns into:
class Contact(val id: Int, var email: String)

fun main(args: Array<String>) {
val contact = Contact(1, "[email protected]")
val contact = Contact(1, "[email protected] $args, ${args.size}")
println(contact.id)
}
```
Expand Down

0 comments on commit f262ef5

Please sign in to comment.