Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Ada

Idiom #93 Pass a runnable procedure as parameter

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

procedure Control (F : access procedure) is
begin
   F.all;
end Control;
void control (void (*f)()) {
        (*f)();
}

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