using System;
public class Program
{
public static bool Write()
Console.WriteLine("Text Output from function.");
}
public static void MyFunction(string label, params int[] args, bool showLabel)
if(showLabel)
Console.WriteLine(label);
foreach(int i in args)
Console.WriteLine($"{i}");