Logo

Programming-Idioms

History of Idiom 3 > diff from v36 to v37

Edit summary for version 37 by andrepd:
New Caml implementation by user [andrepd]

Version 36

2019-09-26, 15:40:26

Version 37

2019-09-26, 16:47:04

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
let do_something arg1 arg2: unit =
	print_endline "foo"