Avatar
import _Concurrency import Foundation async { let (dat, _) = try await URLSession.shared.data(from: URL(string: "https://www.google.com")!) print(String(decoding: dat, as: UTF8.self)) } とりあえずこれは動きました。