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

16 lines
No EOL
214 B
C#

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