mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
7 lines
102 B
Plaintext
7 lines
102 B
Plaintext
class Evaluator(val expr: StringBuilder) {
|
|
fun evaluateArg(): Int {
|
|
return expr.length()
|
|
}
|
|
}
|
|
|