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 05:31:54 +0400
committerMiguel de Icaza <miguel@gnome.org>2001-09-20 05:31:54 +0400
commit4d1cc16aa403cfc6e236d20612e3e321a4edaf12 (patch)
tree8d488a3a0de316f1f0a84641b51a121e0f0a83f9 /mcs/tests/test-6.cs
parent5620f4bc74cb03a87bbaa0d51a510f8bd3d7b1fa (diff)
Add more tests
svn path=/trunk/mcs/; revision=892
Diffstat (limited to 'mcs/tests/test-6.cs')
-rwxr-xr-xmcs/tests/test-6.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/test-6.cs b/mcs/tests/test-6.cs
new file mode 100755
index 00000000000..b95d891b7c4
--- /dev/null
+++ b/mcs/tests/test-6.cs
@@ -0,0 +1,15 @@
+using System;
+
+class X {
+
+ static int Main ()
+ {
+ Console.WriteLine ("From 0 to 9");
+ int i;
+
+ for (i = 0; i < 10; i++)
+ Console.WriteLine (i);
+
+ return 0;
+ }
+}