Skip to content

Commit 1273bab

Browse files
committed
fixup! docs(examples): add kotlin string literals
1 parent 3647ba9 commit 1273bab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ You can also change the playground theme or disable run button using `theme` and
5959

6060
```kotlin
6161
fun main(args: Array<String>) {
62-
println("Hello World!")
62+
println("Hello World! $args, ${args.size}")
6363
}
6464
```
6565

@@ -71,7 +71,7 @@ Or theme `darcula`
7171

7272
```kotlin
7373
fun main(args: Array<String>) {
74-
println("Hello World!")
74+
println("Hello World! $args, ${args.size}")
7575
}
7676
```
7777

0 commit comments

Comments
 (0)