Initial commit

This commit is contained in:
2020-06-17 19:22:19 -04:00
commit e9f83a1d5c
12 changed files with 392 additions and 0 deletions

3
src/main/kotlin/Main.kt Normal file
View File

@ -0,0 +1,3 @@
fun main(args: Array<String>) {
println("Hello world")
}

View File

@ -0,0 +1,9 @@
import org.junit.Test
import org.junit.Assert.assertTrue
class AppTest {
@Test
fun yourTest() {
assertTrue(true)
}
}