Files
pork/tool/src/main/kotlin/gay/pizza/pork/tool/RootCommand.kt

24 lines
440 B
Kotlin

package gay.pizza.pork.tool
import com.github.ajalt.clikt.core.CliktCommand
import com.github.ajalt.clikt.core.subcommands
class RootCommand : CliktCommand(
help = "Pork - The BBQ Language",
name = "pork"
) {
init {
subcommands(
RunCommand(),
HighlightCommand(),
TokenizeCommand(),
ReprintCommand(),
ParseCommand(),
AstCommand(),
AttributeCommand()
)
}
override fun run() {}
}