Initial Commit

This commit is contained in:
Christoph Hagen
2023-10-23 11:08:20 +02:00
commit fd484243be
4 changed files with 51 additions and 0 deletions

14
Sources/Cap_Train.swift Normal file
View File

@ -0,0 +1,14 @@
// 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!")
}
}