Cosmos/source/IL2CPU.Tests/Tests/SimpleFunctionCall/SimpleFunctionCall.cs
mterwoord_cp d5274e0b17
2007-09-10 13:31:57 +00:00

13 lines
No EOL
171 B
C#

using System;
public static class Program
{
public static void Main()
{
int theResult = TheMethod();
}
public static int TheMethod()
{
return 5;
}
}