Initial commit.

This commit is contained in:
Erik C. Thauvin 2016-07-10 21:29:09 -07:00
commit bce3a32575
25 changed files with 593 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");
}
}