summaryrefslogtreecommitdiff
path: root/tests/src/managed/Compilation/HelloWorld.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/managed/Compilation/HelloWorld.cs')
-rw-r--r--tests/src/managed/Compilation/HelloWorld.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/src/managed/Compilation/HelloWorld.cs b/tests/src/managed/Compilation/HelloWorld.cs
new file mode 100644
index 0000000000..13a423ba9d
--- /dev/null
+++ b/tests/src/managed/Compilation/HelloWorld.cs
@@ -0,0 +1,13 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+class C
+{
+ static int Main()
+ {
+ Console.WriteLine("Hello " + "world");
+ return 100;
+ }
+} \ No newline at end of file