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 037ac16 commit f9c708bCopy full SHA for f9c708b
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
```
@@ -59,7 +59,7 @@ You can also change the playground theme or disable run button using `theme` and
59
60
```kotlin
61
62
- println("Hello World!")
+ println("Hello World! $args, ${args.size}")
63
64
65
@@ -71,7 +71,7 @@ Or theme `darcula`
71
72
73
74
75
76
77
0 commit comments