```nim protocol SomeProtocol: proc implemented(x: int) = return x class SomeClass impl SomeProtocol: discard let some = SomeClass.new() some.implemented(5) ```