Caps-Train/Sources/Cap_Train.swift

14 lines
312 B
Swift
Raw Normal View History

2023-10-23 11:08:20 +02:00
// 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!")
}
}