Artsiom Krymov
Results
1
issues of
Artsiom Krymov
Is it possible to do this? ```kotlin interface Repository { fun setFoo(value) fun getFoo() } ... class Intercator (repository: Repository) { fun setFoo(value) { repository.setFoo(value) } fun getFoo() { return...