Logo

Programming-Idioms

History of Idiom 3 > diff from v7 to v8

Edit summary for version 8 by :

Version 7

2015-08-21, 08:45:07

Version 8

2015-08-21, 09:02:34

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)

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)

Code
Procedure finish(name: String);
Begin
  WriteLn('My job here is done. Goodbye ', name);
End;