mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 07:08:01 +00:00
267 B
267 B
Block Comments
Ruby supports (ugly) block comments. They look like this:
=begin
This is a block comment.
I can put whatever I want in here.
=end
def do_something
...
end