We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1037e33 commit 5f5db43Copy full SHA for 5f5db43
README.md
@@ -82,8 +82,8 @@ construction:
82
```kotlin
83
fun main(args: Array<String>) = mainBody {
84
ArgParser(args).parseInto(::MyArgs).run {
85
- println("Hello, {name}!")
86
- println("I'm going to move {count} widgets from {source} to {destination}.")
+ println("Hello, ${name}!")
+ println("I'm going to move ${count} widgets from ${source} to ${destination}.")
87
// TODO: move widgets
88
}
89
0 commit comments