// $Id$ using System; using System.Runtime.CompilerServices; class Hello { static void Main() { Console.WriteLine("Hello, World!"); Print42(); } [MethodImplAttribute(MethodImplOptions.InternalCall)] extern static void Print42(); }