podcast-agent/Program.cs
2023-12-04 20:41:24 -05:00

12 lines
185 B
C#

namespace podcast_agent
{
class Program
{
static async Task Main(string[] args)
{
Console.WriteLine("hello world");
}
}
}