// Sample Solution
using System;
namespace UsingOut
{
class Program
{
static void Main(string[] args)
{
string message = "GARRR";
Console.WriteLine(Whisper(message, out bool marker));
}
static string Whisper(string message, out bool flag)
{
flag = true;
return message.ToLower();
}
}
}
No comments:
Post a Comment