@FunctionalInterface interface IOConsumer<T : Any!>
Represents an operation that accepts a single input argument and returns no result.
Performs this operation on the given argument.
abstract fun accept(t: T): Unit