В Swift 6, помимо всего прочего, была добавлена официальная поддержка Debian, Fedora и Ubuntu. Стало интересно. :)
Что ж, пробуем, следуя инструкциям:
$ mkdir hello
$ cd hello
$ swift package init --type executable
$ cat Sources/main.swift
// The Swift Programming Language
// https://docs.swift.org/swift-book
print("Hello, world!")
$ swift build --swift-sdk x86_64-swift-linux-musl -c release
$ stat .build/release/hello
Size: 42517368
$ ldd .build/release/hello
not a dynamic executable
$ strip .build/release/hello
$ stat .build/release/hello
Size: 6667136
$ .build/release/hello
Hello, world!
Продолжаю наблюдения. :)
Пакеты:
https://swiftpackageindex.com
https://swiftinit.org
Документация:
https://www.swift.org/documentation
https://swiftdoc.org
https://www.swift.org/swift-evolution – эволюция языка