2001-08-28 Dietmar Maurer <dietmar@ximian.com>
[mono.git] / mono / tests / console.cs
diff --git a/mono/tests/console.cs b/mono/tests/console.cs
new file mode 100755 (executable)
index 0000000..d0546f1
--- /dev/null
@@ -0,0 +1,13 @@
+using System;
+
+public class Test {
+
+       public static int Main () {
+               
+               Console.WriteLine ("We can now write to the console");
+
+               return 0;
+       }
+}
+
+