mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
14 lines
No EOL
204 B
C#
14 lines
No EOL
204 B
C#
using System;
|
|
|
|
public static class Program
|
|
{
|
|
public static int Main()
|
|
{
|
|
int theValue = TheMethod();
|
|
return (theValue == 5) ? 0 : 1;
|
|
}
|
|
public static int TheMethod()
|
|
{
|
|
return 5;
|
|
}
|
|
} |