public static var echo: Command {
Command(
description: "Echo any user input",
run: { context in
guard let input = context.arguments.first else { return }
print("\(input)")
}
)
}
The output of the command is "123". I think it should return "123 456". The argument parser always use the whitespace to seperate params.