summaryrefslogtreecommitdiffstats
path: root/src/testlibrary.d
blob: 744163ba634dd91bc5556833a531bf077010c07b (plain)
1
2
3
4
5
6
7
8
9
module testlibrary;

public static class HelloWorldFactory
{
	public static char[] getName()
	{
		return "Hello World";
	}
}