14 lines
312 B
Swift
14 lines
312 B
Swift
|
// The Swift Programming Language
|
||
|
// https://docs.swift.org/swift-book
|
||
|
//
|
||
|
// Swift Argument Parser
|
||
|
// https://swiftpackageindex.com/apple/swift-argument-parser/documentation
|
||
|
|
||
|
import ArgumentParser
|
||
|
|
||
|
@main
|
||
|
struct Cap_Train: ParsableCommand {
|
||
|
mutating func run() throws {
|
||
|
print("Hello, world!")
|
||
|
}
|
||
|
}
|