initial commit

This commit is contained in:
2026-07-10 09:59:02 +02:00
commit a96efee4cf
7 changed files with 114 additions and 0 deletions
+14
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 phbar: ParsableCommand {
mutating func run() throws {
print("Hello, world!")
}
}