For a person without a comp-sci background, what is a lambda in the world of Computer Science?
An example of a lambda in Ruby is as follows:
hello = lambda do puts('Hello') puts('I am inside a proc') end hello.call
Will genereate the following output:
Hello I am inside a proc