summaryrefslogtreecommitdiff
path: root/testsuite/tests/lib-dynlink-csharp/main.cs
blob: a03bfd60ab9a689583b197d8ec75b4a4691e32d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.Runtime.InteropServices;

public class M {
  [DllImport("main.dll")]
  public static extern void start_caml_engine();

  public static void Main() {
    System.Console.WriteLine("Now starting the Caml engine.");
    start_caml_engine();
  }
}