swiftc コマンドで Hello world プログラムをビルドします。

sample.swift

print("Hello world!")
$ # M1 Mac (Ventura) + Apple Swift 5.7.2
$ swiftc sample.swift

$ ./sample
Hello world!

swift コマンドを使うとコンソールから直接実行することもできます。

$ # M1 Mac (Ventura) + Apple Swift 5.7.2
$ swift sample.swift
Hello world!

参考資料