using System;
/*
* Example code to demonstrate the use of methods
* dlivingstone, 2020
* CC-0 (Public Domain)
*/
public class Program
{
static void PrintHello()
Console.WriteLine("Hello");
}
static void PrintHelloN(int repeat)
for (int i = 0; i < repeat; i++)
public static void Main()
PrintHello();
Console.WriteLine();
PrintHelloN(5);