mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
13 lines
195 B
C#
13 lines
195 B
C#
using System;
|
|
public class HelloWorld {
|
|
public static void Main()
|
|
{
|
|
Console.Write("Hello, ");
|
|
PrintWorld();
|
|
}
|
|
|
|
static void PrintWorld()
|
|
{
|
|
Console.WriteLine("World");
|
|
}
|
|
}
|