2005-06-03 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / mtest-7-exe.cs
1 // Compiler options: -addmodule:mtest-7-dll.netmodule
2
3 using n1;
4 using System;
5
6 public class ModTest
7 {
8         
9         public static void Main(string[] args)
10         {
11                 Adder a=new Adder();
12                 Console.WriteLine(a.Add(2,3));
13         }
14
15 }