poohbar
void
public interface RequestHandler<I, O> { public O handleRequest(I input, Context context); }
nestserau
Nothing?
null
class MyClass: RequestHandler<I, Nothing?> { fun handleRequest(input: I, context: Context): Nothing? = null }
aarjav
Unit
A modern programming language that makes developers happier.