We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51bfa7f commit f262ef5Copy full SHA for f262ef5
examples.md
@@ -43,7 +43,7 @@ Turns into:
43
class Contact(val id: Int, var email: String)
44
45
fun main(args: Array<String>) {
46
- val contact = Contact(1, "mary@gmail.com")
+ val contact = Contact(1, "mary@gmail.com $args, ${args.size}")
47
println(contact.id)
48
}
49
```
0 commit comments