Logo

Programming-Idioms

  • Ada
  • Elixir

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)

def finish(name) do
  IO.puts "My job here is done. Goodbye #{name}"
end
procedure Finish (Name : String) is
begin
   Put_Line ("My job here is done. Goodbye " & Name);
end Finish;
void finish(void) {
    printf("My job here is done.\n");
}

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