1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

24 lines
330 B
C#
Raw Normal View History

2011-01-26 11:47:54 +01:00
using System;
using System.Collections;
namespace CS2JTesterProject
{
class MainClass
{
public static void Main (string[] args)
{
Console.WriteLine ("Hello World!");
foreach(Char c in "Hello World") {
Console.Write (c);
}
foreach(Char c in new ArrayList()) {
Console.Write (c);
}
}
}
}