ssg/swift/Sources/ssg.swift
Michael Chalupiak 55bc1c39a6 Initial Commit
2025-07-19 23:05:38 -04:00

15 lines
307 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 ssg: ParsableCommand {
mutating func run() throws {
print("Hello, world!")
}
}