using System.Collections.Generic;
using System.Threading.Tasks;
public static async Task Main()
List<string> items = ["one", "two", "three"];
items.ForEach(async (item) => await Transform(item));
Console.WriteLine("🎶 Nothing bad ever happens to me... 🎶");
public static async Task<string> Transform(string item)
throw new NotImplementedException();