bubblesort/Program.cs
La Programmatrice Verde 704ccbeba9 Initial commit
2025-01-22 09:30:33 +01:00

10 lines
136 B
C#

namespace bubblesort;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}