Logo

Programming-Idioms

History of Idiom 3 > diff from v26 to v27

Edit summary for version 27 by nicanor:
[Elixir] Changed tab for two spaces

Version 26

2016-08-23, 13:45:31

Version 27

2016-09-14, 13:53:42

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
def finish(name) do
	IO.puts "My job here is done. Goodbye #{name}"
end
Code
def finish(name) do
  IO.puts "My job here is done. Goodbye #{name}"
end