1// swift-tools-version: 6.2
2// The swift-tools-version declares the minimum version of Swift required to build this package.
3
4import PackageDescription
5
6let package = Package(
7 name: "RosettaCollatz",
8 targets: [
9 // Targets are the basic building blocks of a package, defining a module or a test suite.
10 // Targets can depend on other targets in this package and products from dependencies.
11 .executableTarget(
12 name: "RosettaCollatz"
13 ),
14 ]
15)