Method Ruby

# The most common way to make a Proc is with the lambda method:
hello = lambda do
  puts('Hello')
  puts('I am inside a proc')
end
hello.call
# we will get
# Hello
# I am inside a proc