Initial Commit

This commit is contained in:
Michael Chalupiak
2025-07-19 23:05:38 -04:00
commit 55bc1c39a6
31 changed files with 617 additions and 0 deletions

15
swift/Package.resolved Normal file
View File

@@ -0,0 +1,15 @@
{
"originHash" : "b2f9f80f764d5ceb785491044e6b20eace13f29886ee3a56c1f074ccc1039636",
"pins" : [
{
"identity" : "swift-argument-parser",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-argument-parser.git",
"state" : {
"revision" : "309a47b2b1d9b5e991f36961c983ecec72275be3",
"version" : "1.6.1"
}
}
],
"version" : 3
}

21
swift/Package.swift Normal file
View File

@@ -0,0 +1,21 @@
// swift-tools-version: 6.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "ssg",
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0"),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.executableTarget(
name: "ssg",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
]
)

14
swift/Sources/ssg.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 ssg: ParsableCommand {
mutating func run() throws {
print("Hello, world!")
}
}