Added practical swift

This commit is contained in:
2025-02-03 20:44:36 +01:00
parent 5fd02a3287
commit cfd0587495
6 changed files with 11574 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// swift-tools-version: 6.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "swift",
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: "swift"),
]
)