Files
WoofWare.PawPrint/WoofWare.PawPrint.Test/sourcesPure/InitializeArray.cs
2025-08-24 19:38:43 +00:00

20 lines
294 B
C#

using System.Linq;
namespace HelloWorldApp
{
class Program
{
static int Main(string[] args)
{
int[] array = new[] { 1, 2, 3 };
if (array.Sum() != 6)
{
return 1;
}
return 0;
}
}
}