a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
267 B
C#
16 lines
267 B
C#
// 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));
|
|
}
|
|
|
|
}
|