#!/usr/bin/env swift; import Foundation func main() -> Void { var s:String = "Hello, world! 🥰🇺🇸" for c in s { print(c) } exit(EXIT_SUCCESS) } main()