Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / console.cs
1 using System;
2
3 public class Test {
4
5         public static int Main () {
6                 
7                 Console.WriteLine ("We can now write to the console");
8
9                 return 0;
10         }
11 }
12
13