mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
14 lines
No EOL
160 B
C#
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;
|
|
}
|
|
} |