Initial commit

This commit is contained in:
Erik C. Thauvin 2023-11-03 21:31:09 -07:00
commit f837b26903
47 changed files with 1365 additions and 0 deletions

View file

@ -0,0 +1,18 @@
package com.example
class ExampleTest {
fun verifyHello() {
if ("Hello World!" != Example().message) {
throw AssertionError()
} else {
println("Succeeded")
}
}
companion object {
@JvmStatic
fun main(args: Array<String>) {
ExampleTest().verifyHello()
}
}
}