With the introduction of async/await, you might wonder how you can use the new feature in combination with Combine.
The code posted below allows you to write the following constructs:
let somePublisher = [1, 2, 3].publisher
func someAsyncFunction(_ int: Int) async -> Int {
return int
}