summaryrefslogtreecommitdiff
path: root/tests/projects/kotlin-native/package/cli-parser/src/main.kt
blob: dae11c45ce8f6f15bc55c2c989dfcf6ebc2e36d2 (plain)
1
2
3
4
5
6
7
8
9
10
import kotlinx.cli.ArgParser
import kotlinx.cli.ArgType
import kotlinx.cli.default

fun main(args: Array<String>) {
    val parser = ArgParser("example")
    val name by parser.option(ArgType.String, shortName = "n", description = "Your name").default("World")
    parser.parse(args)
    println("Hello, $name!")
}