mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
14 lines
No EOL
170 B
C#
14 lines
No EOL
170 B
C#
using System;
|
|
|
|
class Program
|
|
{
|
|
static void Main()
|
|
{
|
|
int TheValue = Subtract(3, 2);
|
|
}
|
|
|
|
public static int Subtract(int a, int b)
|
|
{
|
|
return a - b;
|
|
}
|
|
} |