using System;
public class Program
{
// fields and properties
// methods
static void ouput_hello()
Console.WriteLine("hello world");
}
static Boolean isEven(int i) // method signature "Boolean" is return type, need to provide "return" under
return i%2 == 0;
public static void Main()
ouput_hello();
Console.WriteLine(isEven(4));