mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
16 lines
No EOL
214 B
C#
16 lines
No EOL
214 B
C#
using System;
|
|
|
|
class Program
|
|
{
|
|
public static int Main()
|
|
{
|
|
int xValue = 0;
|
|
xValue = DoEcho(5);
|
|
return (xValue == 5) ? 0 : 1;
|
|
}
|
|
|
|
public static int DoEcho(int aValue)
|
|
{
|
|
return aValue;
|
|
}
|
|
} |