mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
No EOL
182 B
C#
15 lines
No EOL
182 B
C#
using System;
|
|
|
|
class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
int xValue = 0;
|
|
xValue = DoEcho(5);
|
|
}
|
|
|
|
public static int DoEcho(int aValue)
|
|
{
|
|
return aValue;
|
|
}
|
|
} |