blob: c831ccb0cb527c6af7d7ed79010677e64057c7f1 [file] [log] [blame]
namespace org.apache.maven.it {
using System;
public class It0003 {
public static void Main () {
System.Console.Write("Hello World!");
new It0002();
}
public String GetValue()
{
return "test";
}
}
}