First drop

This commit is contained in:
Andy Clement
2012-12-07 08:43:54 -08:00
parent deff1cc219
commit 1bf580f54b
996 changed files with 61618 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
package example;
public class Simple2 {
void moo() {
System.out.println("Simple2.moo() running");
}
void boo() {
System.out.println("Simple2.boo() running");
}
public void bar(int i, String string, long l) {
System.out.println("Simple2.bar(" + i + "," + string + "," + l + ") running");
}
}