Caps-Train/Sources/Cap_Train.swift
2023-10-23 11:08:20 +02:00

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!")
}
}