Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-416.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28f956d015ecd5cc56c1715d069a2e36108dade9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Compiler options: -addmodule:test-416-mod.netmodule

using n1;
using System;

public class ModTest
{
        
        public static void Main(string[] args)
        {
                Adder a=new Adder();
                Console.WriteLine(a.Add(2,3));
        }

}