1.配置Swift环境
2.创建文件
vi HelloWorld.swift (文件后缀你喜欢就好)
3.输入下面信息
#!/usr/bin/env swift
print("Hello World!")
4.运行
./path/to/HelloWorld.swift
orswift path/to/HelloWorld.swift
vi HelloWorld.swift (文件后缀你喜欢就好)
#!/usr/bin/env swift
print("Hello World!")
./path/to/HelloWorld.swift
orswift path/to/HelloWorld.swift