15 lines
264 B
Kotlin
15 lines
264 B
Kotlin
|
|
package com.example.hpostesting
|
||
|
|
|
||
|
|
|
||
|
|
class Calculator {
|
||
|
|
fun add(a: Int, b: Int): Int {
|
||
|
|
return a + b
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
class MathApplication(private val calculator: Calculator) {
|
||
|
|
fun addNumbers(a: Int, b: Int): Int {
|
||
|
|
return calculator.add(a, b)
|
||
|
|
}
|
||
|
|
}
|