swiftlyfox/Sources/swiftyfox/swiftyfox.swift
Tony Bark 82077a9bb2 Added ArgumentParser to main project
- At Swift book's Functions and Closure section in Playgrounds (next up Objects and Classes)
2025-11-12 18:52:42 -05:00

10 lines
164 B
Swift

import ArgumentParser
@main
struct swiftyfox: ParsableCommand {
@Flag var verbose = false
static func main() {
print("Hello, world!")
}
}