Analizo

 view release on metacpan or  search on metacpan

t/samples/hello_world/csharp/main.cs  view on Meta::CPAN

public class main {

  static public void Main() {
    HelloWorld hello1 = new HelloWorld();
    HelloWorld hello2 = new HelloWorld();

    hello1.say();
    hello2.say();

    // // even if we don't need to destroy these objects explicitly, we call
    // // destroy() to make this similar to the C code
    hello1.destroy();
    hello2.destroy();
  }
}



( run in 0.320 second using v1.01-cache-2.11-cpan-5511b514fd6 )