Concurrency
Async/await command line tool in Xcode 14.3
TLDR: add @main and rename main.swift To create a command line tool in Xcode 14.3 that uses async/await there are a few tweaks required. When we create the project using the Command Line Tool template we are left with a main.swift and the code below: To use async/await we need Read more…