podcast-agent/Program.cs

12 lines
185 B
C#
Raw Normal View History

2023-12-04 20:39:43 -05:00

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