Logo

Programming-Idioms

  • Lisp
  • Php

Idiom #3 Create a procedure

Like a function which doesn't return any value, thus has only side effects (e.g. Print to standard output)

function()
{
    echo "Hello World";
}

This is an unnamed function, it can be bound to a variable or else immediately executed - the demo has both usages in it.
function finish($name) 
{
    echo "My job here is done. Goodbye $name";
}
(defun show (message)
  (format t "Hello: ~a" message)
  (values))
procedure Finish (Name : String) is
begin
   Put_Line ("My job here is done. Goodbye " & Name);
end Finish;

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