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