Cosmos/source/IL2CPU.Tests/Tests/SimpleEchoFunction/SimpleEchoFunction.cs

15 lines
No EOL
182 B
C#

using System;
class Program
{
public static void Main()
{
int xValue = 0;
xValue = DoEcho(5);
}
public static int DoEcho(int aValue)
{
return aValue;
}
}