mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
10 lines
No EOL
196 B
C#
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];
|
|
}
|
|
} |