Cosmos/source/IL2CPU.Tests/Tests/SimpleFunctionCall/SimpleFunctionCall.cs
2007-09-11 16:29:45 +00:00

13 lines
No EOL
170 B
C#

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