Logo

Programming-Idioms

History of Idiom 3 > diff from v4 to v5

Edit summary for version 5 by :

Version 4

2015-08-19, 16:18:44

Version 5

2015-08-20, 14:42:19

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)

Imports
import std.stdio;
Code
void finish() {
	writeln("I' m a done job");
}