Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'samples/HelloWorld/Program.cs')
-rw-r--r--samples/HelloWorld/Program.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/samples/HelloWorld/Program.cs b/samples/HelloWorld/Program.cs
new file mode 100644
index 000000000..8168c8051
--- /dev/null
+++ b/samples/HelloWorld/Program.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace HelloWorld
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ Console.WriteLine("Hello World!");
+ }
+ }
+}