ENH: major changes to support addition of languages from cmake modules directory.

This commit is contained in:
Bill Hoffman
2004-09-22 14:42:05 -04:00
parent 5971857544
commit 692ba48c4e
55 changed files with 975 additions and 605 deletions

View File

@@ -0,0 +1,11 @@
class HelloWorld
{
public static void main(String args[])
{
A a;
a = new A();
a.printName();
System.out.println("Hello World!");
}
}