mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
27 lines
542 B
C#
27 lines
542 B
C#
using System;
|
|
|
|
namespace HelloWorld {
|
|
public class Program {
|
|
|
|
public static void Jump() {
|
|
Integer();
|
|
}
|
|
|
|
public static void Integer() {
|
|
int i = 22;
|
|
}
|
|
|
|
public static void NewObject() {
|
|
object x = new string('t', 1);
|
|
}
|
|
|
|
public static void NewString() {
|
|
string s = "Test";
|
|
}
|
|
|
|
public static void Main(string[] args) {
|
|
Console.WriteLine("Hello world!");
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|