mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
24 lines
330 B
C#
24 lines
330 B
C#
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);
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|