First commit.

This commit is contained in:
Erik C. Thauvin 2016-07-09 19:58:13 -07:00
commit a7a703ccc8
11 changed files with 147 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");
}
}

1
example2/test.properties Normal file
View file

@ -0,0 +1 @@
version=example2

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");
}
}