about summary refs log tree commit diff stats
path: root/swift/life/Package.swift
diff options
context:
space:
mode:
Diffstat (limited to 'swift/life/Package.swift')
-rw-r--r--swift/life/Package.swift14
1 files changed, 14 insertions, 0 deletions
diff --git a/swift/life/Package.swift b/swift/life/Package.swift
new file mode 100644
index 0000000..e1f6d6e
--- /dev/null
+++ b/swift/life/Package.swift
@@ -0,0 +1,14 @@
+// swift-tools-version: 5.10
+// The swift-tools-version declares the minimum version of Swift required to build this package.
+
+import PackageDescription
+
+let package = Package(
+    name: "life",
+    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: "life"),
+    ]
+)