18
1
using System;
2
3
public class Program
4
{
5
public static bool A(){
6
Console.WriteLine("A");
7
return true;
8
}
9
public static bool B(){
10
Console.WriteLine("B");
11
return true;
12
}
13
public static void Main()
14
{
15
if(A()|B())
16
Console.WriteLine("Hello World");
17
}
18
}
Cached Result
0.9999999