Method Ruby

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.