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