Logo

Programming-Idioms

  • Ada
  • Lisp
  • Python

Idiom #93 Pass a runnable procedure as parameter

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

from typing import Callable
def control(f: Callable): f()
def control(f):
    f()
procedure Control (F : access procedure) is
begin
   F.all;
end Control;
(defun control (f)
   (funcall f))
void control (void (*f)()) {
        (*f)();
}

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