Logo

Programming-Idioms

  • C#
  • Python

Idiom #93 Pass a runnable procedure as parameter

Implement the procedure control which receives one parameter f, and runs f.

def control(f):
    f()
from typing import Callable
def control(f: Callable): f()
T control(Func<T> f) {
	return f();
}
procedure Control (F : access procedure) is
begin
   F.all;
end Control;

New implementation...
< >
programming-idioms.org