21
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("Selamat");
13
14
test("Datang");
15
16
test("di");
17
18
test("IDCsharp.com");
19
20
}
21
}
Cached Result
Hello World