Cosmos/source/IL2CPU.Tests/Tests/SimpleAddFunction/SimpleAddFunction.cs
2007-09-15 11:14:28 +00:00

14 lines
No EOL
160 B
C#

using System;
class Program
{
static void Main()
{
int theValue = Add(1, 2);
}
public static int Add(int a, int b)
{
return a + b;
}
}