mirror of
https://git.tonybark.com/tonytins/swiftlyfox.git
synced 2026-02-10 08:14:48 -05:00
- At Swift book's Functions and Closure section in Playgrounds (next up Objects and Classes)
10 lines
164 B
Swift
10 lines
164 B
Swift
import ArgumentParser
|
|
|
|
@main
|
|
struct swiftyfox: ParsableCommand {
|
|
@Flag var verbose = false
|
|
|
|
static func main() {
|
|
print("Hello, world!")
|
|
}
|
|
}
|