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!
参考資料
-
Swiftをコマンドラインから使ってみた。
http://yamaimo.hatenablog.jp/entry/2015/06/19/200000 -
Swift コンパイラのアーキテクチャ
https://qiita.com/rintaro/items/3ad640e3938207218c20 -
apple/swift: The Swift Programming Language
https://github.com/apple/swift