ruby multiline comment

=begin
This is a multiline comment in Ruby.
You can use the "=begin" and "=end" keywords to delimit the comment block.
Everything between "=begin" and "=end" is treated as a comment and is ignored by the Ruby interpreter.
Multiline comments are often used for documenting code or temporarily excluding blocks of code from execution.
=end