Skip to content

Commit 5f5db43

Browse files
committed
Fix issue xenomachina#59. Thanks for patch @LeonardOneWave!
1 parent 1037e33 commit 5f5db43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ construction:
8282
```kotlin
8383
fun main(args: Array<String>) = mainBody {
8484
ArgParser(args).parseInto(::MyArgs).run {
85-
println("Hello, {name}!")
86-
println("I'm going to move {count} widgets from {source} to {destination}.")
85+
println("Hello, ${name}!")
86+
println("I'm going to move ${count} widgets from ${source} to ${destination}.")
8787
// TODO: move widgets
8888
}
8989
}

0 commit comments

Comments
 (0)