Cosmos/source/IL2CPU.Tests/Tests/TestSimpleArrays/TestSimpleArrays.cs
2007-09-22 09:44:20 +00:00

10 lines
No EOL
196 B
C#

using System;
class ConsoleDrv
{
static void Main()
{
int[] xTestValues = new int[] {1, 2, 3, 4};
int xSum = xTestValues[0] + xTestValues[1] + xTestValues[2] + xTestValues[3];
}
}