Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Pascal
- Python
- Python
- Ada
- C
- C++
- C#
- D
- D
- Dart
- Elixir
- Fortran
- Go
- Groovy
- Haskell
- JS
- Java
- Java
- Lisp
- Lua
- PHP
- Perl
- Ruby
- Rust
- Scheme
procedure control(f: tprocedure);
begin
if Assigned(f) then f;
end;
def control(f):
f()
procedure Control (F : access procedure) is
begin
F.all;
end Control;
void control (void (*f)()) {
(*f)();
}
void control(invocable auto&& f)
{
f();
}
T control(Func<T> f) {
return f();
}
void control(void function() f)
{
f();
}
The standard, C-like, solution that uses a function pointer as run-time parameter and not a template one.
control(Function f) => f();
def control(f) do
f()
end
module x
implicit none
contains
subroutine control(f)
interface
subroutine f()
end subroutine f
end interface
call f
end subroutine control
end module x
control f = f
For this to be meaningful in Haskell control and f should be of type IO or similar.
function control(f){
f();
}
static void control(Runnable f) {
f.run();
}
(defun control (f)
(funcall f))
function control(f)
f()
end
sub control {
my $f = shift;
$f->();
}
def control
yield
end
(define (control f) (f))