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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2001-09-20 03:14:09 +0400
committerMiguel de Icaza <miguel@gnome.org>2001-09-20 03:14:09 +0400
commitb5850646c313168d95ff7045a6788a153ec92aad (patch)
treefd15a3807513771f2299609038eb0fc881ec7423 /mcs/tests/test-1.cs
parent883bbb3ace413cd50c626b4e8a4b27db1c0b5f71 (diff)
Flush:
svn path=/trunk/mcs/; revision=889
Diffstat (limited to 'mcs/tests/test-1.cs')
-rwxr-xr-xmcs/tests/test-1.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/mcs/tests/test-1.cs b/mcs/tests/test-1.cs
new file mode 100755
index 00000000000..adb1dd88a92
--- /dev/null
+++ b/mcs/tests/test-1.cs
@@ -0,0 +1,9 @@
+using System;
+
+class X {
+ static int Main (string [] args)
+ {
+ Console.WriteLine ("Hello, World!");
+ return 0;
+ }
+}