14
1
using System;
2
3
public class Program
4
{
5
static void test(string testing)
6
{
7
Console.WriteLine(testing);
8
}
9
10
public void Main(string[] args)
11
{
12
test("idcsharp.com");
13
}
14
}
Cached Result