Initial commit.
This commit is contained in:
commit
27f1f3e9cc
25 changed files with 635 additions and 0 deletions
3
example/src/main/kotlin/com/example/Main.kt
Normal file
3
example/src/main/kotlin/com/example/Main.kt
Normal file
|
@ -0,0 +1,3 @@
|
|||
package com.example
|
||||
|
||||
fun main(args: Array<String>) = println("\n\nHello Kotlin world from Kobalt\n\n")
|
8
example/src/test/kotlin/com/example/MainTest.kt
Normal file
8
example/src/test/kotlin/com/example/MainTest.kt
Normal file
|
@ -0,0 +1,8 @@
|
|||
package com.example
|
||||
|
||||
import org.testng.annotations.Test
|
||||
|
||||
class ExampleTest {
|
||||
@Test
|
||||
fun f() = println("Running test")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue