A block is a section of code that can be passed to a method much like passing an argument.
A block is delimited with {}:
{ puts "Hello there!" }
or do and end:
do
puts "Hello there!"
end
# Generally, you use {} for a one-line block, and do..end for a multi-line block.