Initial commit.

This commit is contained in:
Erik C. Thauvin 2016-07-20 16:02:48 -07:00
commit ec2ca3184a
20 changed files with 770 additions and 0 deletions

View file

@ -0,0 +1,7 @@
package com.example;
class Main {
public static void main(String[] argv) {
System.out.println("\n\nHello Java world from Kobalt\n\n");
}
}

View file

@ -0,0 +1,9 @@
package com.example;
import org.testng.annotations.Test;
public class ExampleTest {
@Test
public void f() {
System.out.println("Running test");
}
}