Merge pull request #5428 from kumpera/wasm-support-p2
[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