Logo

Programming-Idioms

  • Clojure

Idiom #93 Pass a runnable procedure as parameter

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

static void control(Runnable f) {
    f.run();
}
from typing import Callable
control: Callable = lambda f: f()

Optionally, provide a `type hint`.
procedure Control (F : access procedure) is
begin
   F.all;
end Control;

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