initial commit

This commit is contained in:
2026-04-15 18:03:52 -04:00
commit 451bf3a9fc
6 changed files with 284 additions and 0 deletions

13
Package.swift Normal file
View File

@@ -0,0 +1,13 @@
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "Nunc",
platforms: [.macOS(.v13)],
targets: [
.executableTarget(
name: "Nunc",
path: "Sources/Nunc"
)
]
)