22 lines
218 B
Kotlin
Vendored
22 lines
218 B
Kotlin
Vendored
import kotlin.test.*
|
|
|
|
@Test
|
|
fun addition() {
|
|
println(40 + 2)
|
|
}
|
|
|
|
@Test
|
|
fun multiplication () {
|
|
println(21 * 2)
|
|
}
|
|
|
|
@Test
|
|
fun subtraction () {
|
|
println(50 - 8)
|
|
}
|
|
|
|
@Test
|
|
fun division () {
|
|
println(126 / 3)
|
|
}
|