mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
19 lines
No EOL
341 B
C#
19 lines
No EOL
341 B
C#
using System;
|
|
|
|
public class ConsoleDrv {
|
|
static int Main() {
|
|
int Value = Function2();
|
|
return Value == 5 ? 0 : 1;
|
|
}
|
|
|
|
public static int Function1() {
|
|
int TestValue = 2;
|
|
return TestValue;
|
|
}
|
|
|
|
public static int Function2() {
|
|
int TestValue2 = Function1();
|
|
int TestValue = 3;
|
|
return TestValue + TestValue2;
|
|
}
|
|
} |